/* ============================================================
   DESTINATIONS PAGE — page-specific styles
   ============================================================ */

.page-hero {
  background: var(--ink);
  padding: calc(var(--header-h) + 56px) 0 64px;
  color: var(--white);
}
.page-hero .eyebrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .lead {
  max-width: 620px;
}
.page-hero .hero-cta-row .btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.page-hero .hero-cta-row .btn-ghost:hover { background: rgba(255,255,255,0.16); }

.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
  padding: 18px 0;
}
.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--stroke-strong);
  color: var(--text-mid);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.filter-pill .count {
  background: var(--surface);
  color: var(--text-low);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--r-pill);
}
.filter-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.filter-pill.active .count {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.filter-pill:hover:not(.active) { border-color: var(--ink); color: var(--text-hi); }

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.results-meta .count-text {
  font-size: 0.92rem;
  color: var(--text-mid);
}
.results-meta .count-text strong { color: var(--text-hi); font-family: var(--font-display); }

.dest-category {
  margin-bottom: 56px;
}
.dest-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.dest-category-head h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.dest-category-head .cat-count {
  font-size: 0.82rem;
  color: var(--text-low);
  font-weight: 600;
  flex-shrink: 0;
}
.dest-category-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 680px;
  margin-bottom: 24px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1080px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.dest-card:hover {
  border-color: var(--stroke-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.dest-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.dest-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-low);
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xs);
  padding: 3px 7px;
}
.dest-tag.is-popular {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: var(--accent-line);
}
.dest-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-hi);
  line-height: 1.3;
}
.dest-card .dest-sub {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: -4px;
}
.dest-card .dest-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-low);
  margin-top: auto;
}
.dest-card .dest-meta .sep { color: var(--stroke-strong); }
.dest-card .dest-flight-note {
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 600;
}
.dest-card .dest-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-hi);
  border: 1.5px solid var(--stroke-strong);
  border-radius: var(--r-pill);
  padding: 9px 0;
  transition: all 0.18s ease;
}
.dest-card .dest-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.dest-card[hidden] { display: none; }

.dest-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-low);
  display: none;
}
.dest-empty.show { display: block; }

.dest-final-note {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
}
.dest-final-note h2 { margin-bottom: 12px; }
.dest-final-note p { max-width: 560px; margin: 0 auto 26px; }
