/* ==========================================================================
   DESTINATIONS — Editorial Layout
   ========================================================================== */

/* ─── INTRO ───────────────────────────────────────────────────────────────── */
.dest-intro {
  padding: var(--section-gap) 0 40px;
  text-align: center;
}
.dest-intro h2 {
  max-width: 700px;
  margin: 0 auto 1.4rem;
  color: var(--brown);
}
.dest-intro p {
  max-width: 520px;
  margin: 0 auto;
}

/* ─── FEATURE DESTINATION (FUSION) ───────────────────────────────────────── */
.dest-feature-wrap {
  margin-bottom: var(--section-gap);
}
.dest-feature {
  position: relative;
  background: var(--charcoal);
  border-radius: 0; /* Flat edges */
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 540px;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.dest-feature-img-side {
  position: relative;
  overflow: hidden;
}
.dest-feature-img-side img.main-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.dest-feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.6s var(--ease-out);
  z-index: 2;
}
.dest-feature:hover .dest-feature-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.dest-feature:hover .main-feat-img {
  transform: scale(1.05);
}

/* Featured Label */
.feat-eyebrow {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  pointer-events: none;
}

/* Image Strip */
.dest-feature-strip {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}
.dest-feature-strip img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}

.dest-feature-body {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.dest-feature .pkg-badge {
  align-self: flex-start;
  margin-bottom: 1.5rem;
}
.dest-feature h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  color: var(--white);
}
.dest-feature p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--sage-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.dest-feature .sa-card-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: auto;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.dest-feature:hover .sa-card-arrow {
  transform: translateX(5px);
  filter: brightness(1.1) saturate(1.1);
}

/* ─── CHAPTER HEADING ─────────────────────────────────────────────────────── */
.dest-chapter-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.dest-chapter-head h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--brown);
}
.dest-chapter-count {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── ALTERNATING SECTIONS ───────────────────────────────────────────────── */
.dest-section {
  padding: 0;
}
.dest-section--alt {
  background: #f7f3ed; /* Soft Sand/Cream */
}
.dest-section--sage {
  background: var(--charcoal);
  color: var(--white);
}
.dest-section--sage .dest-chapter-head {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.dest-section--sage .dest-chapter-head h3 {
  color: var(--white);
}
.dest-section--sage .dest-chapter-count {
  color: var(--sage-light);
}

/* ─── DESTINATION CARD GRID ───────────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding-bottom: var(--section-gap);
}

.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0; /* Flat edges */
  text-decoration: none;
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.dest-card-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-img {
  transform: scale(1.05);
}

.dest-card-body {
  padding: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}
.dest-card-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
}
.dest-card-title {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
  color: var(--white);
}
.dest-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--sage-light);
  margin: 0;
  flex: 1;
}

.dest-card--forest .dest-card-body {
  background: var(--forest-dark);
}

.dest-card .sa-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 35px;
  height: auto;
  z-index: 3;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.dest-card:hover .sa-card-arrow {
  transform: translateX(5px);
  filter: brightness(1.1) saturate(1.1);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dest-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dest-feature-img-side {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .dest-chapter-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .dest-feature-img-side {
    height: 300px;
  }
  .dest-feature-strip {
    left: 1rem;
    bottom: 1rem;
  }
  .dest-feature-strip img {
    width: 60px;
    height: 60px;
  }
  .dest-feature-body {
    padding: 2rem 1.5rem;
  }
}
