/* =========================================================================
   MyDominicanTrip — Destinos
   destinos.html (grid de destinos) + destino-detail.html (archive listing)
   ========================================================================= */

/* ============ DESTINOS HERO ============ */
.ds-hero {
  position: relative; overflow: hidden;
  background: var(--mdt-navy); color: #fff;
  padding: 64px 0 48px;
}
.ds-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=1600&q=85&fit=crop&auto=format');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.ds-hero > .container { position: relative; z-index: 1; }
.ds-hero .eyebrow {
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-300);
  margin-bottom: 14px;
}
.ds-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(36px, 5.4vw, 60px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff;
  max-width: 18ch; text-wrap: balance;
}
.ds-hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.ds-hero p {
  margin-top: 16px; max-width: 600px;
  font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.55;
}
.ds-hero-stats {
  display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap;
}
.ds-hero-stats > div { line-height: 1.1; }
.ds-hero-stats .n {
  font-family: var(--font-heading); font-weight: 800; font-size: 32px;
  color: #fff;
}
.ds-hero-stats .l {
  font-size: 12px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px;
}

/* ============ REGIONS BAR ============ */
.ds-regions {
  display: flex; gap: 10px; padding: 28px 0 8px;
  flex-wrap: wrap;
}
.ds-region {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--fg-2); text-decoration: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.ds-region:hover { border-color: var(--mdt-navy); color: var(--mdt-navy); }
.ds-region.active { background: var(--mdt-red); color: #fff; border-color: var(--mdt-red); }
.ds-region .count { font-size: 11px; opacity: 0.7; }

/* ============ FEATURED DESTINATION ============ */
.ds-featured {
  margin: 24px 0 36px;
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--gray-100);
  min-height: 380px;
}
.ds-featured-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ds-featured-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,42,82,0.85) 0%, rgba(26,42,82,0.4) 60%, rgba(26,42,82,0.2) 100%);
}
.ds-featured-content {
  position: relative; z-index: 1;
  padding: 56px 48px;
  color: #fff; max-width: 520px;
}
@media (max-width: 720px) { .ds-featured-content { padding: 36px 24px; } }
.ds-featured-content .tag {
  display: inline-block; padding: 5px 12px;
  background: var(--mdt-red); color: #fff; border-radius: 999px;
  font-family: var(--font-heading); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.ds-featured-content h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; color: #fff;
}
.ds-featured-content h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.ds-featured-content p {
  margin: 14px 0 22px;
  font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.55;
}
.ds-featured-content .stats {
  display: flex; gap: 22px; margin-bottom: 24px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.ds-featured-content .stats span { display: inline-flex; align-items: center; gap: 6px; }
.ds-featured-content .cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: #fff; color: var(--mdt-navy); text-decoration: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  transition: all var(--t-base) var(--ease);
}
.ds-featured-content .cta:hover { background: var(--mdt-red); color: #fff; transform: translateY(-1px); }

/* ============ DESTINATION GRID ============ */
.ds-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
  padding: 12px 0 56px;
}
@media (min-width: 640px) { .ds-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ds-grid { grid-template-columns: repeat(3, 1fr); } }

.ds-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  background: var(--gray-100);
  text-decoration: none;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.ds-card.wide { aspect-ratio: 16/10; grid-column: span 1; }
@media (min-width: 1000px) { .ds-card.wide { grid-column: span 2; } }
.ds-card:hover { transform: translateY(-4px); }
.ds-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 600ms var(--ease-out);
}
.ds-card:hover .ds-card-bg { transform: scale(1.06); }
.ds-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,42,82,0) 30%, rgba(26,42,82,0.5) 75%, rgba(26,42,82,0.92) 100%);
}
.ds-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 22px 22px 20px;
  color: #fff;
}
.ds-card-tag {
  display: inline-block;
  padding: 4px 10px; margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.ds-card-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 26px; line-height: 1.05; color: #fff;
  letter-spacing: -0.01em;
}
.ds-card.wide .ds-card-name { font-size: 34px; }
.ds-card-em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.ds-card-meta {
  display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,0.82);
}
.ds-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.ds-card-meta svg { color: var(--red-300); }
.ds-card-arrow {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--mdt-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease);
}
.ds-card:hover .ds-card-arrow { background: var(--mdt-red); color: #fff; transform: rotate(-45deg); }

/* =========================================================================
   INTERACTIVE PROVINCE MAP — full-bleed, with right-side detail panel
   ========================================================================= */
.dr-map-wrap {
  margin: 48px 0 64px;
  background: transparent;
  position: relative;
}
.dr-map-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) {
  .dr-map-grid { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
}
.dr-map-panel {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 1100px) { .dr-map-panel { position: sticky; top: 100px; } }

/* ============ INTERACTIVE PIN (positioned button on top of SVG) ============ */
.dr-pin-btn {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mdt-red);
  border: 2.5px solid #fff;
  box-shadow:
    0 0 0 0 rgba(220,38,38,0.45),
    0 4px 14px rgba(220,38,38,0.4),
    0 2px 4px rgba(0,0,0,0.18);
  cursor: pointer;
  z-index: 10;
  animation: drPinPulse 2.8s ease-in-out infinite;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: flex; align-items: center; justify-content: center;
  padding: 0; outline: none;
  color: #fff;
}
.dr-pin-btn:hover {
  transform: translate(-50%, -50%) scale(1.18);
  animation: none;
  box-shadow:
    0 0 0 8px rgba(220,38,38,0.18),
    0 8px 22px rgba(220,38,38,0.55),
    0 2px 4px rgba(0,0,0,0.18);
}
.dr-pin-btn.active {
  background: #fff;
  color: var(--mdt-red);
  transform: translate(-50%, -50%) scale(1.3);
  animation: none;
  box-shadow:
    0 0 0 10px rgba(220,38,38,0.18),
    0 0 0 20px rgba(220,38,38,0.06),
    0 8px 30px rgba(220,38,38,0.5);
}
.dr-pin-btn svg { width: 14px; height: 14px; }
@keyframes drPinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.45), 0 4px 14px rgba(220,38,38,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(220,38,38,0),  0 4px 14px rgba(220,38,38,0.3); }
}
.dr-pin-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--mdt-navy); color: #fff;
  padding: 5px 10px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast) var(--ease);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.dr-pin-tooltip::after {
  content: ''; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--mdt-navy);
}
.dr-pin-btn:hover .dr-pin-tooltip,
.dr-pin-btn:focus .dr-pin-tooltip { opacity: 1; }

/* Hide the in-SVG pin pulse legacy class (we use HTML pins now) */
.tour-pin { display: none; }

/* ============ DETAIL CARD (right panel) ============ */
.dr-detail-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 3px rgba(26,42,82,0.04), 0 12px 30px rgba(26,42,82,0.08);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
/* Empty state */
.dr-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 48px 28px; text-align: center;
}
.dr-empty-ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red-50); color: var(--mdt-red);
  display: flex; align-items: center; justify-content: center;
}
.dr-empty h4 {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  color: var(--mdt-navy);
}
.dr-empty p { font-size: 13.5px; color: var(--fg-3); line-height: 1.55; }

/* Filled state */
.dr-card-photo {
  height: 180px;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  position: relative;
}
.dr-card-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,42,82,0.4) 100%);
}
.dr-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.95); color: var(--mdt-navy);
  border-radius: 999px; padding: 4px 11px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.dr-card-price {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: var(--mdt-red); color: #fff;
  border-radius: 999px; padding: 5px 12px;
  font-family: var(--font-heading); font-size: 12.5px; font-weight: 800;
}
.dr-card-body { padding: 18px 22px 22px; }
.dr-card-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  color: var(--mdt-navy); letter-spacing: -0.01em; line-height: 1.15;
  margin-bottom: 4px;
}
.dr-card-prov {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 16px;
}
.dr-card-prov svg { color: var(--mdt-red); }

.dr-card-info { display: grid; gap: 10px; margin-bottom: 16px; }
.dr-info-row { display: flex; gap: 11px; align-items: flex-start; }
.dr-info-ic {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--red-50); color: var(--mdt-red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dr-info-text { line-height: 1.4; min-width: 0; }
.dr-info-label {
  font-family: var(--font-heading); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-4);
}
.dr-info-value {
  font-size: 13px; color: var(--mdt-navy); margin-top: 1px;
  word-break: break-word;
}

.dr-tours-block { margin-bottom: 16px; }
.dr-tours-title {
  font-family: var(--font-heading); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 10px;
}
.dr-tour-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
}
.dr-tour-row:hover {
  background: var(--red-50);
  border-color: rgba(220,38,38,0.3);
  transform: translateX(2px);
}
.dr-tour-row .n {
  font-size: 13px; color: var(--mdt-navy); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.dr-tour-row .n svg { color: var(--mdt-red); width: 12px; height: 12px; }
.dr-tour-row .p {
  font-family: var(--font-heading); font-weight: 800; font-size: 13px;
  color: var(--mdt-red);
}

.dr-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dr-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px;
  padding: 11px 14px; border-radius: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--t-base) var(--ease);
}
.dr-btn svg { width: 14px; height: 14px; }
.dr-btn-primary {
  background: var(--mdt-red); color: #fff;
  box-shadow: 0 8px 18px rgba(220,38,38,0.28);
}
.dr-btn-primary:hover { background: var(--red-600); transform: translateY(-1px); }
.dr-btn-ghost {
  background: #fff; color: var(--mdt-navy);
  border: 1px solid var(--border);
}
.dr-btn-ghost:hover { border-color: var(--mdt-navy); transform: translateY(-1px); }

/* Locations list mini-card */
.dr-list-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dr-list-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.dr-list-head h5 {
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  color: var(--mdt-navy);
}
.dr-list-count {
  background: var(--red-50); color: var(--mdt-red);
  padding: 2px 9px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
}
.dr-list-scroll { max-height: 320px; overflow-y: auto; }
.dr-list-scroll::-webkit-scrollbar { width: 6px; }
.dr-list-scroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
.dr-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-base) var(--ease);
  background: #fff;
  border-left: 3px solid transparent;
}
.dr-list-item:last-child { border-bottom: none; }
.dr-list-item:hover { background: var(--gray-50); }
.dr-list-item.active { background: var(--red-50); border-left-color: var(--mdt-red); }
.dr-list-emoji {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--mdt-red);
  flex-shrink: 0;
}
.dr-list-emoji svg { width: 18px; height: 18px; }
.dr-list-item.active .dr-list-emoji { background: #fff; }
.dr-list-info { flex: 1; min-width: 0; }
.dr-list-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 13.5px;
  color: var(--mdt-navy);
}
.dr-list-sub {
  font-size: 11.5px; color: var(--fg-3); margin-top: 2px;
}
.dr-list-arrow {
  color: var(--gray-400); width: 16px; height: 16px;
  flex-shrink: 0;
  transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.dr-list-item:hover .dr-list-arrow,
.dr-list-item.active .dr-list-arrow {
  color: var(--mdt-red); transform: translateX(2px);
}
.dr-map-head {
  padding: 0 0 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px;
}
.dr-map-head .l { max-width: 560px; }
.dr-map-head .eyebrow {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 10px;
}
.dr-map-head h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--mdt-navy);
}
.dr-map-head h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.dr-map-head p {
  margin-top: 10px;
  font-size: 16px; color: var(--fg-3); line-height: 1.5;
}
.dr-map-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-3);
}
.dr-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dr-map-legend .swatch {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid var(--border);
}
.dr-map-legend .swatch.featured { background: rgba(220,38,38,0.18); border-color: var(--red-200); }
.dr-map-legend .swatch.minor { background: #fff; }
.dr-map-legend .pin-dot {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--mdt-red); border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--mdt-red);
}

.dr-map-stage {
  position: relative;
  padding: 0;
  width: 100%;
}
.dr-map-svg {
  width: 100%; height: auto; display: block;
  max-height: 880px;
  background: transparent;
  overflow: visible;
}
.dr-province {
  fill: #F6F4EF;
  stroke: var(--gray-300);
  stroke-width: 0.8;
  cursor: pointer;
  transition: fill var(--t-base) var(--ease), stroke var(--t-base) var(--ease);
  outline: none;
}
.dr-province:hover {
  fill: var(--red-100);
  stroke: var(--mdt-red);
  stroke-width: 1.2;
}
.dr-province.featured {
  fill: rgba(220,38,38,0.10);
  stroke: rgba(220,38,38,0.45);
}
.dr-province.featured:hover {
  fill: rgba(220,38,38,0.28);
  stroke: var(--mdt-red);
}
.dr-province.active {
  fill: var(--mdt-red) !important;
  stroke: var(--red-700) !important;
  stroke-width: 1.5 !important;
}

/* TOUR PINS — placed inside SVG using <g class="tour-pin"> */
.tour-pin { cursor: pointer; pointer-events: all; }
.tour-pin .pin-pulse {
  fill: var(--mdt-red); opacity: 0.25;
  transform-box: fill-box; transform-origin: center;
  animation: tour-pulse 2.2s ease-out infinite;
}
@keyframes tour-pulse {
  0%   { r: 7;  opacity: 0.45; }
  100% { r: 22; opacity: 0;    }
}
.tour-pin .pin-circle {
  fill: var(--mdt-red); stroke: #fff; stroke-width: 2.5;
  transition: r var(--t-base) var(--ease);
}
.tour-pin:hover .pin-circle { fill: var(--mdt-navy); }
.tour-pin .pin-icon { fill: #fff; pointer-events: none; }
.tour-pin .pin-label {
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  fill: var(--mdt-navy); pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.tour-pin .pin-label-bg {
  fill: #fff; stroke: var(--mdt-red); stroke-width: 1.2;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.tour-pin:hover .pin-label,
.tour-pin:hover .pin-label-bg,
.tour-pin:focus .pin-label,
.tour-pin:focus .pin-label-bg { opacity: 1; }

/* Popover (rich tooltip) */
.dr-popover {
  position: absolute;
  width: 300px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px rgba(26,42,82,0.18), 0 4px 12px rgba(26,42,82,0.08);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px)) scale(0.96);
  transform-origin: bottom center;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  z-index: 10;
  border: 1px solid var(--border);
}
.dr-popover.visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
  pointer-events: auto;
}
.dr-popover::after {
  content: '';
  position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dr-pop-img {
  height: 130px;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  position: relative;
}
.dr-pop-img .badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.95); color: var(--mdt-navy);
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em;
}
.dr-pop-img .pop-price {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--mdt-red); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 800;
}
.dr-pop-body { padding: 14px 16px; }
.dr-pop-region {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mdt-red);
}
.dr-pop-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--mdt-navy); margin-top: 2px; letter-spacing: -0.005em;
  line-height: 1.2;
}
.dr-pop-sub {
  font-size: 11.5px; color: var(--fg-4); margin-top: 2px;
}
.dr-pop-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin-top: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.dr-pop-stat { text-align: center; }
.dr-pop-stat .n {
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  color: var(--mdt-navy); line-height: 1;
}
.dr-pop-stat .l {
  font-size: 10px; color: var(--fg-3); margin-top: 3px;
  letter-spacing: 0.04em;
}
.dr-pop-highlights {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 10px;
}
.dr-pop-highlights span {
  font-size: 10.5px; color: var(--fg-2);
  background: var(--gray-100);
  padding: 3px 8px; border-radius: 999px;
}
.dr-pop-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 10px 14px;
  background: var(--mdt-red); color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none;
}
.dr-pop-cta:hover { background: var(--red-600); }
.dr-pop-empty {
  margin-top: 12px;
  font-size: 12.5px; color: var(--fg-3); line-height: 1.45;
  font-style: italic;
}

.dr-map-footer {
  margin-top: 28px;
}
.dr-map-footer-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 14px;
}
.dr-map-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.dr-map-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 12.5px;
  color: var(--mdt-navy); text-decoration: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.dr-map-chip:hover, .dr-map-chip.hover {
  background: var(--mdt-red); color: #fff; border-color: var(--mdt-red);
}
.dr-map-chip svg { width: 12px; height: 12px; }

@media (max-width: 720px) {
  .dr-popover { width: 240px; }
  .dr-pop-img { height: 100px; }
  .dr-map-svg { max-height: 520px; }
}
.ds-map-strip {
  margin: 32px 0 64px;
  background: linear-gradient(135deg, #DDEEF5 0%, #C5E0EE 50%, #B5D5E5 100%);
  border-radius: var(--r-lg); overflow: hidden;
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 360px;
}
@media (max-width: 720px) { .ds-map-strip { grid-template-columns: 1fr; } }
.ds-map-strip .info {
  padding: 40px;
  background: var(--mdt-navy); color: #fff;
}
.ds-map-strip .info .eyebrow {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-300);
  margin-bottom: 12px;
}
.ds-map-strip .info h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15;
  color: #fff; letter-spacing: -0.01em;
}
.ds-map-strip .info h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.ds-map-strip .info p {
  margin: 12px 0 18px;
  font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.55;
}
.ds-map-strip .map { position: relative; min-height: 280px; }
.ds-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
}
.ds-pin .lbl {
  background: #fff; padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10.5px;
  color: var(--mdt-navy); box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.ds-pin svg { width: 22px; height: 26px; filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25)); }

/* =========================================================================
   ARCHIVE LISTING (destino-detail.html)
   ========================================================================= */

.dst-hero {
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; align-items: flex-end;
}
.dst-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.dst-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,42,82,0.4) 0%, rgba(26,42,82,0.85) 100%);
}
.dst-hero-inner {
  position: relative; z-index: 1;
  padding: 60px 0 36px;
  color: #fff; width: 100%;
}
.dst-hero-bread {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.dst-hero-bread a { color: rgba(255,255,255,0.7); text-decoration: none; }
.dst-hero-bread a:hover { color: #fff; }
.dst-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 60px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff;
  max-width: 18ch; text-wrap: balance;
}
.dst-hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.dst-hero .lead {
  margin-top: 12px; max-width: 640px;
  font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.55;
}

/* Quick stats */
.dst-stats {
  position: relative; z-index: 2;
  margin-top: -36px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: grid; grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(26,42,82,0.10);
}
.dst-stats > div {
  padding: 18px 18px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.dst-stats > div:last-child { border-right: none; }
.dst-stats .l {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 4px;
  white-space: nowrap;
}
.dst-stats .n {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  color: var(--mdt-navy);
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.dst-stats .n svg { color: var(--mdt-red); flex-shrink: 0; }
@media (max-width: 720px) {
  .dst-stats { grid-template-columns: 1fr; }
  .dst-stats > div { border-right: none; border-bottom: 1px solid var(--border); }
  .dst-stats > div:last-child { border-bottom: none; }
}

/* TABBED CATEGORY FILTER */
.dst-tabs {
  display: flex; gap: 0;
  margin: 36px 0 24px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.dst-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; font-size: 13.5px;
  color: var(--fg-3);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease);
}
.dst-tab:hover { color: var(--mdt-navy); }
.dst-tab.active {
  color: var(--mdt-red);
  border-bottom-color: var(--mdt-red);
}
.dst-tab .count {
  background: var(--gray-100); color: var(--fg-3);
  padding: 1px 7px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.dst-tab.active .count { background: var(--red-50); color: var(--mdt-red); }

/* Archive layout */
.dst-archive {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 64px;
}
@media (min-width: 1000px) {
  .dst-archive { grid-template-columns: 280px minmax(0, 1fr); gap: 36px; align-items: start; }
}

/* Filter sidebar */
.dst-filter {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
}
@media (min-width: 1000px) { .dst-filter { position: sticky; top: 100px; } }
.dst-filter h4 {
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  color: var(--mdt-navy);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.dst-filter h4 a {
  font-size: 11.5px; font-weight: 600; color: var(--mdt-red);
  text-decoration: none; letter-spacing: 0.04em;
}
.dst-filter .group { margin-bottom: 22px; }
.dst-filter .group:last-child { margin-bottom: 0; }
.dst-filter .group-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 10px;
}
.dst-chip-set { display: flex; gap: 6px; flex-wrap: wrap; }
.dst-chip {
  padding: 7px 12px; border-radius: 999px;
  background: var(--gray-100); border: 1px solid transparent;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  color: var(--fg-2); cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.dst-chip:hover { background: var(--gray-200); }
.dst-chip.applied {
  background: var(--mdt-navy); color: #fff;
  display: inline-flex; align-items: center; gap: 5px;
  padding-right: 8px;
}
.dst-chip.applied .x {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; line-height: 1;
}
.dst-checks { display: grid; gap: 8px; }
.dst-checks label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--fg-2); cursor: pointer;
}
.dst-checks label input { accent-color: var(--mdt-red); }
.dst-checks .num { margin-left: auto; color: var(--fg-4); font-size: 12px; }

.dst-range {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.dst-range input {
  padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 13px; color: var(--mdt-navy);
}

/* Results header */
.dst-results-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
}
.dst-results-count {
  font-family: var(--font-heading); font-size: 14.5px; font-weight: 600;
  color: var(--mdt-navy);
}
.dst-results-count strong { color: var(--mdt-red); }
.dst-sort {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-3);
}
.dst-sort select {
  padding: 8px 32px 8px 12px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 600; font-size: 12.5px;
  color: var(--mdt-navy); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231A2A52' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 10px center;
}

/* Active filter chips (applied) */
.dst-active {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Results grid */
.dst-results {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .dst-results { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .dst-results { grid-template-columns: repeat(3, 1fr); } }

.dst-listing {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
  text-decoration: none;
}
.dst-listing:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(26,42,82,0.10); }
.dst-listing-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--gray-100);
  position: relative;
}
.dst-listing-img .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--mdt-red); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.dst-listing-img .fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--fg-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color var(--t-base) var(--ease);
}
.dst-listing-img .fav:hover { color: var(--mdt-red); }
.dst-listing-body {
  padding: 16px 18px 18px;
  flex: 1; display: flex; flex-direction: column;
}
.dst-listing-cat {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mdt-red);
}
.dst-listing-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  color: var(--mdt-navy); margin-top: 4px; line-height: 1.25;
}
.dst-listing-meta {
  display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-3);
}
.dst-listing-meta span { display: inline-flex; align-items: center; gap: 4px; }
.dst-listing-meta .r { color: var(--mdt-red); font-weight: 600; }
.dst-listing-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.dst-listing-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 19px;
  color: var(--mdt-navy); line-height: 1;
}
.dst-listing-price small { font-weight: 500; font-size: 11.5px; color: var(--fg-3); }
.dst-listing-cta {
  font-family: var(--font-heading); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--mdt-red); border: none;
  padding: 8px 14px; border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.dst-listing-cta:hover { background: var(--red-600); }
