
.dest-page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dest-page-hero .dest-slideshow {
  position: absolute;
  inset: 0;
}

.dest-page-hero .dest-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* Mismo filtro cálido que en el index */
  filter: sepia(0.35) saturate(0.8) brightness(0.75);
}
.dest-page-hero .dest-slide.active { opacity: 1; }

.dest-page-hero .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,8,0.85) 0%, transparent 60%);
  z-index: 1;
}

.dest-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 56px;
}

.dest-page-hero-content .dest-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}

.dest-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.dest-info {
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.dest-info-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--bark);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.dest-info-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.dest-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dest-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.dest-amenity::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

.dest-gallery {
  padding: 0 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.dest-gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--bark);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  min-height: 220px;
}

.gallery-item:hover img { transform: scale(1.04); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,15,8,0.95);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  .dest-page-hero-content    { padding: 0 24px 40px; }
  .dest-info                 { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .dest-gallery              { padding: 0 24px 80px; }
  .gallery-grid              { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child  { grid-row: span 1; }
}
