/* ============================================================
   삿포로 쇼핑 스팟 총정리 - Stylesheet
   디자인 시스템: 삿포로 도시 이미지 기반
   ============================================================ */

:root {
  /* 고정 색상 */
  --color-bg:           #ffffff;
  --color-surface-alt:  #f7f7f5;
  --color-gray-light:   #ECECEC;

  /* 메인 컬러 - 삿포로 눈축제 깊은 겨울 밤하늘 + 시계탑의 차분한 네이비 */
  --color-primary:        #1B3A5C;
  /* primary의 밝은 버전 - 옅은 네이비 (호버, 보더용) */
  --color-primary-light:  #3D6491;

  /* 액센트 - 삿포로 맥주 라벨의 별, 도시 상징 레드 */
  --color-accent:         #C8102E;
  /* accent의 매우 연한 배경 - 카드/배너 배경에 사용 */
  --color-accent-light:   #FCEEF0;
  /* accent의 중간 밝기 */
  --color-accent-muted:   #E5556B;
  /* accent 기반 초연한 섹션 배경 */
  --color-accent-bg:      #FFF7F8;

  /* 섹션별 강조색 */
  --color-section1:       #C8102E;  /* 스스키노 - 네온/번화가의 레드 */
  --color-section2:       #1B3A5C;  /* 삿포로역 - 네이비, 차분한 도시 */
  --color-outlet:         #2E7D5B;  /* 아울렛 - 홋카이도 자연의 그린 */

  /* 텍스트 */
  --color-text:           #1a1a1a;
  --color-text-sub:       #555;
  --color-text-light:     #888;

  /* 그림자 */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  /* 폭 */
  --max-w: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-width: 1024px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s, background 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--color-gray-light);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo i { color: var(--color-accent); }
.nav-menu { display: flex; gap: 22px; }
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-sub);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  /* primary 기반 어두운 3단계 그라디언트 */
  background: linear-gradient(135deg, #0E2138 0%, #1B3A5C 50%, #2A4D77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,16,46,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200,16,46,0.18), transparent 55%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-light); }
.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: var(--color-accent-muted); }

/* ============================================================
   Section common
============================================================ */
.section {
  padding: 90px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-alt {
  background: var(--color-surface-alt);
  max-width: 100%;
}
.section-alt > .section-header,
.section-alt > .shop-list,
.section-alt > .popular-notice,
.section-alt > .popular-grid,
.section-alt > .course-list,
.section-alt > .map-legend,
.section-alt > .map-layout {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--color-text-sub);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   Purpose Table
============================================================ */
.purpose-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.purpose-table {
  min-width: 760px;
  font-size: 0.93rem;
}
.purpose-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 16px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
}
.purpose-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--color-gray-light);
  vertical-align: middle;
}
.purpose-table tbody tr {
  transition: background 0.2s;
  cursor: pointer;
}
.purpose-table tbody tr:hover { background: var(--color-accent-bg); }
.purpose-table tbody tr.row-selected {
  background: var(--color-accent-light);
  box-shadow: inset 4px 0 0 var(--color-accent);
}
.location-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.loc-sec1 { background: var(--color-section1); }
.loc-sec2 { background: var(--color-section2); }
.loc-outlet { background: var(--color-outlet); }

/* ============================================================
   Map Section
============================================================ */
.map-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--color-gray-light);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  user-select: none;
}
.legend-item:hover { transform: translateY(-2px); }
.legend-item.is-hidden { opacity: 0.4; }
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.dot-sec1 { background: var(--color-section1); }
.dot-sec2 { background: var(--color-section2); }
.dot-city { background: #7B6BA8; }
.dot-outlet { background: var(--color-outlet); }

.map-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 580px;
}
.map-container { position: relative; min-height: 580px; }
#google-map { width: 100%; height: 100%; min-height: 580px; }
.map-side-panel {
  border-left: 1px solid var(--color-gray-light);
  display: flex;
  flex-direction: column;
  max-height: 580px;
}
.map-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px;
  border-bottom: 1px solid var(--color-gray-light);
  background: var(--color-surface-alt);
}
.map-filter-btn {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: var(--color-text-sub);
  border: 1px solid var(--color-gray-light);
  transition: background 0.2s, color 0.2s;
}
.map-filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.map-place-list {
  overflow-y: auto;
  flex: 1;
}
.map-place-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-gray-light);
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 0.2s;
}
.map-place-item:hover { background: var(--color-accent-bg); }
.map-place-item.is-active {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding-left: 15px;
}
.map-place-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.map-place-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.map-place-info p {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.map-place-info a {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 4px;
  display: inline-block;
}

/* ============================================================
   Shop cards / Accordion
============================================================ */
.shop-list {
  display: grid;
  gap: 18px;
}
.shop-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--color-gray-light);
  will-change: transform;
}
.shop-card:hover { box-shadow: var(--shadow-md); }
.card-featured {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-accent-bg) 100%);
  border: 1px solid var(--color-accent-light);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3px;
}
.card-loc {
  font-size: 0.84rem;
  color: var(--color-text-light);
}
.card-loc i { color: var(--color-accent); margin-right: 4px; }
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-gray-light);
  color: var(--color-text-sub);
}
.tag-luxury     { background: #1B3A5C; color: #fff; }
.tag-electronics{ background: #2563EB; color: #fff; }
.tag-food       { background: #F59E0B; color: #fff; }
.tag-guestcard  { background: #16A34A; color: #fff; }
.tag-outlet     { background: var(--color-outlet); color: #fff; }
.tag-gift       { background: #DB2777; color: #fff; }
.tag-casual     { background: #6366F1; color: #fff; }
.tag-fashion    { background: #A21CAF; color: #fff; }
.tag-brand      { background: #475569; color: #fff; }
.tag-coupon     { background: #EAB308; color: #1a1a1a; }
.tag-beauty     { background: #EC4899; color: #fff; }
.tag-drink      { background: #B45309; color: #fff; }
.tag-night      { background: #0F172A; color: #fff; }

.acc-chevron {
  color: var(--color-text-light);
  transition: transform 0.3s;
  font-size: 0.9rem;
}
.acc-card.is-open .acc-chevron { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}
.acc-card.is-open .acc-body {
  max-height: 1200px;
  padding: 0 26px 26px;
}
.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  margin-bottom: 16px;
  padding-top: 6px;
  border-top: 1px dashed var(--color-gray-light);
}
.info-box {
  background: var(--color-surface-alt);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  display: grid;
  gap: 8px;
}
.info-row {
  font-size: 0.88rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-row i { width: 18px; }
.info-row-tax      i { color: var(--color-accent); }
.info-row-discount i { color: #F59E0B; }
.info-row-guest    i { color: #16A34A; }

.card-recommend, .card-check {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.card-recommend {
  background: var(--color-accent-light);
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
}
.card-recommend strong { color: var(--color-accent); }
.card-check {
  background: #F0F9FF;
  border-left: 3px solid #0EA5E9;
}
.card-check strong { color: #0369A1; }

.card-map-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.card-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.card-map-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}
.card-map-btn:last-child {
  background: var(--color-accent);
}
.card-map-btn:last-child:hover { background: var(--color-accent-muted); }

/* ============================================================
   Brand Finder Grid (브랜드별 빠른찾기)
============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.brand-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  border: 1px solid var(--color-gray-light);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.brand-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0 8px;
}
.brand-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary);
}
.brand-loc {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.brand-loc i { color: var(--color-accent); margin-right: 4px; }
.brand-buy, .brand-check {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-sub);
  padding: 8px 10px;
  border-radius: 8px;
}
.brand-buy { background: var(--color-accent-light); border-left: 3px solid var(--color-accent); }
.brand-buy strong { color: var(--color-accent); }
.brand-check { background: #F0F9FF; border-left: 3px solid #0EA5E9; }
.brand-check strong { color: #0369A1; }
.brand-map {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.brand-map:hover { background: var(--color-primary-light); transform: translateY(-2px); }

/* ============================================================
   Buy Table (브랜드별 추천 구매템)
============================================================ */
.buy-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.buy-table {
  min-width: 720px;
  font-size: 0.93rem;
}
.buy-table th {
  background: var(--color-accent);
  color: #fff;
  padding: 14px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
}
.buy-table td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--color-gray-light);
  vertical-align: middle;
}
.buy-table td small {
  display: block;
  color: var(--color-text-light);
  font-size: 0.78rem;
  margin-top: 4px;
}
.buy-table tbody tr:hover { background: var(--color-accent-bg); }

/* ============================================================
   Area Summary Box (구역별 요약 - 시간 없으면 / 추천 대상)
============================================================ */
.area-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.summary-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-sm);
}
.summary-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-box h4 i { color: var(--color-accent); }
.who-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.who-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   Info Recommend / Info Check (카드 내부)
============================================================ */
.info-recommend, .info-check {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.info-recommend {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
}
.info-check {
  background: #F0F9FF;
  border-left: 3px solid #0EA5E9;
}
.info-recommend h5, .info-check h5 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-recommend h5 { color: var(--color-accent); }
.info-check h5 { color: #0369A1; }
.info-recommend p, .info-check p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
}
.info-recommend strong { color: var(--color-accent); }
.info-check strong { color: #0369A1; }

/* ============================================================
   Note Box (안내 박스)
============================================================ */
.note-box {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 26px;
  font-size: 0.92rem;
  color: #92400E;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.7;
}
.note-box i { color: #D97706; font-size: 1.1rem; margin-top: 3px; }
.note-box strong { color: #B45309; }

/* ============================================================
   Airport Grid
============================================================ */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.airport-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px;
  border: 1px solid var(--color-gray-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.airport-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.airport-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.airport-card p {
  font-size: 0.86rem;
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 8px;
}
.airport-card a {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   Final CTA
============================================================ */
.final-cta {
  background: linear-gradient(135deg, #0E2138 0%, #1B3A5C 50%, #2A4D77 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200,16,46,0.25), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
  line-height: 1.8;
}
.final-cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Location Badge - 공항용
============================================================ */
.loc-airport { background: #6366F1; }

/* ============================================================
   Popular Grid (legacy - 호환성)
============================================================ */
.popular-notice {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  color: #92400E;
}
.popular-notice i { color: #D97706; font-size: 1.1rem; }
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.popular-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--color-gray-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.popular-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.popular-icon { font-size: 2rem; margin-bottom: 10px; }
.popular-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.popular-card p {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 1.6;
}

/* ============================================================
   Tax Change
============================================================ */
.tax-change-section {
  padding: 90px 24px;
  background: #FFF7ED;
}
.tax-change-section .section-header { margin-bottom: 36px; }
.tax-change-banner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #FCD34D;
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: var(--shadow-sm);
}
.tcb-head {
  font-size: 1.05rem;
  font-weight: 700;
  color: #B45309;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tcb-head i { color: #D97706; }
.tax-change-banner ul { display: grid; gap: 10px; }
.tax-change-banner li {
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  color: var(--color-text);
}
.tax-change-banner li::before {
  content: '▸';
  color: #D97706;
  position: absolute;
  left: 4px;
  font-weight: 700;
}
.tax-change-banner strong { color: #B45309; }

/* ============================================================
   Tax Quick
============================================================ */
.tax-quick-section {
  padding: 90px 24px;
  background: var(--color-surface-alt);
}
.tax-quick-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.tax-quick-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid var(--color-gray-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tax-quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tqc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.tax-quick-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.tax-quick-card p {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}
.tax-quick-card strong { color: var(--color-accent); }

/* ============================================================
   Tip cards
============================================================ */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tip-card {
  padding: 26px 28px;
  border-radius: 16px;
  border: 1px solid;
}
.tip-head {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tip-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.tip-card p {
  font-size: 0.92rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.tip-card strong { color: var(--color-primary); }
.tip-yellow { background: #FEFCE8; border-color: #FDE68A; }
.tip-yellow .tip-head { color: #A16207; }
.tip-orange { background: #FFF7ED; border-color: #FED7AA; }
.tip-orange .tip-head { color: #C2410C; }
.tip-green  { background: #F0FDF4; border-color: #BBF7D0; }
.tip-green  .tip-head { color: #15803D; }
.tip-blue   { background: #EFF6FF; border-color: #BFDBFE; }
.tip-blue   .tip-head { color: #1D4ED8; }

/* ============================================================
   Courses
============================================================ */
.course-list {
  display: grid;
  gap: 18px;
}
.course-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid var(--color-gray-light);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.course-num {
  display: inline-block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.course-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.course-card > p {
  font-size: 0.92rem;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.course-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.route-step {
  padding: 7px 14px;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}
.route-arrow {
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   Checklist
============================================================ */
.checklist-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-light);
}
.checklist { display: grid; gap: 8px; margin-bottom: 22px; }
.checklist-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-surface-alt);
  border-radius: 12px;
  text-align: left;
  transition: background 0.2s, transform 0.15s;
}
.checklist-btn:hover { background: var(--color-accent-bg); }
.check-box {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--color-gray-light);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.check-box::after {
  content: '✓';
  font-weight: 800;
  color: transparent;
  font-size: 0.95rem;
}
.checklist-btn.is-done .check-box {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.checklist-btn.is-done .check-box::after { color: #fff; }
.checklist-btn.is-done .check-text {
  color: var(--color-text-light);
  text-decoration: line-through;
}
.check-text { font-size: 0.95rem; font-weight: 500; }

.progress-area { text-align: center; }
.progress-bar-bg {
  background: var(--color-gray-light);
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 100px;
  transition: width 0.4s;
}
.progress-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  font-weight: 600;
}
.progress-done {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  display: none;
}
.progress-done.show { display: block; }

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: 50px 24px 30px;
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo i { color: var(--color-accent); margin-right: 6px; }
.footer-note {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.7);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   Back to top
============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--color-accent-muted); }

/* ============================================================
   Fade up animation
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Map InfoWindow custom
============================================================ */
.gm-info {
  font-family: 'Noto Sans KR', sans-serif;
  min-width: 200px;
}
.gm-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.gm-info p { font-size: 0.85rem; color: var(--color-text-sub); margin-bottom: 6px; }
.gm-info a {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================================
   Responsive - Mobile
============================================================ */
@media (max-width: 767px) {
  body { min-width: auto; }

  .header-inner { padding: 14px 16px; }
  .nav-menu {
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px 0;
    gap: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.3s;
    border-top: 1px solid var(--color-gray-light);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a {
    padding: 13px 22px;
    border-bottom: none;
    border-left: 3px solid transparent;
    width: 100%;
  }
  .nav-menu a.active { border-left-color: var(--color-accent); border-bottom-color: transparent; }
  .hamburger { display: flex; }

  .hero { padding: 90px 18px 60px; min-height: 90vh; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .section { padding: 60px 18px; }
  .section-alt { padding: 60px 18px; }
  .tax-change-section, .tax-quick-section { padding: 60px 18px; }

  .map-layout { grid-template-columns: 1fr; min-height: auto; }
  .map-container, #google-map { min-height: 420px; }
  .map-side-panel { max-height: 420px; border-left: none; border-top: 1px solid var(--color-gray-light); }

  .acc-trigger {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 18px 18px;
  }
  .card-tags { grid-column: 1 / -1; justify-content: flex-start; }
  .acc-card.is-open .acc-body { padding: 0 18px 18px; }
  .acc-body { padding: 0 18px; }

  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .tip-grid { grid-template-columns: 1fr; }

  /* 새 컴포넌트 모바일 대응 */
  .brand-grid { grid-template-columns: 1fr; }
  .area-summary { grid-template-columns: 1fr; }
  .airport-grid { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; align-items: stretch; }

  .map-legend { gap: 8px; }
  .legend-item { font-size: 0.8rem; padding: 6px 12px; }

  .checklist-wrap { padding: 22px 18px; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  body { min-width: auto; }
  .nav-menu { gap: 12px; }
  .nav-menu a { font-size: 0.85rem; }
  .popular-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .airport-grid { grid-template-columns: repeat(2, 1fr); }
}
