/* ═══════════════════════════════════════════════════════════════
   14 · DESTINATIONS BENTO
   Full-bleed dark grid · variable-sized tiles · hover reveals
   ═══════════════════════════════════════════════════════════════ */

.dest {
  background: var(--navy-900);
  color: #fff;
  padding: 120px 0 0;
}

.dest__head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 var(--container-pad);
}
.dest__head .sec-head__title { color: #fff; }

.dest__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 340px 340px;
  gap: 4px;
  padding: 0 4px 4px;
}

.dest-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-700);
  text-decoration: none;
  color: inherit;
}
.dest-tile--wide { grid-column: span 2; }
.dest-tile--tall { grid-row: span 2; }

.dest-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
}
.dest-tile:hover .dest-tile__img { transform: scale(1.08); }

.dest-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 30%,
    rgba(14, 27, 46, 0.4) 65%,
    rgba(14, 27, 46, 0.95) 100%);
  transition: background 0.4s;
}
.dest-tile:hover .dest-tile__overlay {
  background: linear-gradient(180deg,
    rgba(14, 27, 46, 0.2) 0%,
    rgba(14, 27, 46, 0.6) 65%,
    rgba(14, 27, 46, 0.98) 100%);
}

.dest-tile__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  transition: transform 0.4s var(--ease);
}
.dest-tile:hover .dest-tile__body { transform: translateY(-8px); }

.dest-tile__kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.dest-tile__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 8px;
}
.dest-tile--tall .dest-tile__title { font-size: 38px; }

.dest-tile__meta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  max-height: 0;
  transition: all 0.4s var(--ease);
}
.dest-tile:hover .dest-tile__meta {
  opacity: 1;
  max-height: 30px;
  margin-top: 4px;
}

.dest-tile__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translate(-8px, 8px);
}
.dest-tile:hover .dest-tile__arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
