/* ─── PAGE BANNER ────────────────────────────────── */
.page-banner {
  height: 480px;
  background: url('/images/lib/maldives-bungalows-1800w.webp') center 60%/cover no-repeat;
}

.page-banner::after {
  background: linear-gradient(to right,
    rgba(10,24,16,0.80) 0%,
    rgba(10,24,16,0.55) 40%,
    rgba(10,24,16,0.18) 70%,
    rgba(10,24,16,0.02) 100%
  );
}

.page-banner-content { max-width: 620px; }

/* ─── INTRO ──────────────────────────────────────── */
.dest-intro { background: var(--linen); padding: 56px 80px 0; text-align: center; }

.dest-intro-inner { max-width: 720px; margin: 0 auto; }

.dest-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.dest-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 8px;
}

/* ─── CATEGORY QUICK NAV ─────────────────────────── */
.dest-nav {
  background: var(--green-deep);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.dest-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  padding: 16px 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.dest-nav a:last-child { border-right: none; }
.dest-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

/* ─── DESTINATION SECTIONS ───────────────────────── */
.dest-section {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 480px;
}

.dest-section.reverse { grid-template-columns: 44% 56%; }

.dest-photo { position: relative; overflow: hidden; }

.dest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.dest-section:hover .dest-photo img { transform: scale(1.04); }

.dest-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,24,16,0.10) 0%, rgba(10,24,16,0.00) 50%);
}

.dest-section.reverse .dest-photo-overlay {
  background: linear-gradient(to left, rgba(10,24,16,0.10) 0%, rgba(10,24,16,0.00) 50%);
}

.dest-content {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-section:nth-child(odd) .dest-content { background: var(--linen); }
.dest-section:nth-child(even) .dest-content { background: var(--cream); }

.dest-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dest-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.dest-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 14px;
}

.dest-hook {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: var(--green-mid);
  line-height: 1.5;
  margin-bottom: 18px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.dest-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.dest-places { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 24px; }

.dest-place-tag {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green-deep);
  background: rgba(46,102,71,0.08);
  border: 1px solid rgba(46,102,71,0.18);
  padding: 5px 11px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.dest-place-tag:hover { background: rgba(46,102,71,0.15); border-color: var(--green-mid); }

.dest-cta {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 12px 26px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

.dest-cta:hover { background: var(--gold-light); }

/* ─── CLOSING CTA ────────────────────────────────── */
.dest-cta-section {
  background: var(--green-deep);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dest-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/lib/iceland-aurora-1400w.webp') center/cover no-repeat;
  opacity: 0.12;
}

.dest-cta-section > * { position: relative; z-index: 2; }
.dest-cta-section .section-eyebrow { color: var(--gold-pale); }

.dest-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 10px;
  line-height: 1.15;
}

.dest-cta-script {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin: 12px 0 32px;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-section, .dest-section.reverse { grid-template-columns: 1fr; min-height: 0; }
  .dest-section.reverse .dest-photo { order: -1; }
  .dest-photo { height: 300px; }
  .dest-content { padding: 40px 36px; }
}

@media (max-width: 1100px) {
  .dest-nav { display: none; }
}

@media (max-width: 900px) {
  .page-banner { height: 400px; }
  .dest-intro { padding: 44px 24px 0; }
  .dest-content { padding: 32px 22px; }
  .dest-cta-section { padding: 56px 24px; }
}
