/* ── Destination Hero ───────────────────────── */
.destination-hero {
  position: relative;
  height: 55vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.destination-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(40, 10, 80, 0.50) 100%
  );
}

/* ── Hero load-in keyframes ── */
@keyframes dh-fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dh-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dh-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dh-scaleIn {
  from { opacity: 0; transform: scaleX(.4); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes dh-waveIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ── Hero breadcrumb ── */
.destination-hero__breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  animation: dh-fadeDown .6s cubic-bezier(.22,.68,0,1.2) both;
}
.destination-hero__breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.destination-hero__breadcrumbs a:hover { color: var(--brand-light); }
.destination-hero__breadcrumbs .fa {
  font-size: 10px;
  margin: 0 8px;
  opacity: .5;
}

/* ── Divider line under breadcrumb ── */
.destination-hero__divider {
  width: 40px;
  height: 2px;
  background: var(--brand-light);
  margin: 14px auto 16px;
  border-radius: 2px;
  transform-origin: center;
  animation: dh-scaleIn .5s .25s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── Title ── */
.destination-hero__pin {
  font-size: .72em;
  color: var(--brand-light);
  margin-right: 10px;
  vertical-align: middle;
}
.destination-hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-shadow: 0 3px 24px rgba(0,0,0,.4);
  margin-bottom: .5rem;
  animation: dh-fadeUp .65s .2s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── Subtitle + tag chips ── */
.destination-hero__subtitle {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 18px;
  animation: dh-fadeUp .65s .38s cubic-bezier(.22,.68,0,1.2) both;
}
.destination-hero__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  animation: dh-fadeIn .7s .55s both;
}
.destination-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .2s, background .2s;
}
.destination-hero__tag:hover {
  border-color: var(--brand-light);
  background: rgba(160,119,231,.18);
  color: #fff;
}
.destination-hero__tag .fa { color: var(--brand-light); font-size: 11px; }

/* ── Wave ── */
.destination-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  animation: dh-waveIn .7s .4s cubic-bezier(.22,.68,0,1.2) both;
}
.destination-hero__wave svg { display: block; width: 100%; height: 48px; }

/* ── Intro section ── */
.destination-intro {
  position: relative;
  padding: 60px 0 20px;
}
.destination-intro__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.destination-intro__card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(160,119,231,.10);
  position: absolute;
  top: -10px;
  left: 20px;
  pointer-events: none;
}
.destination-intro__card .lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin: 0;
}
.destination-intro__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-light), #c8a8f5);
  border-radius: 3px;
  margin: 0 auto 24px;
}

@media (max-width: 767.98px) {
  .destination-hero { height: 46vh; background-attachment: scroll; }
  .destination-hero__title { font-size: 2rem; }
  .destination-intro__card { padding: 32px 24px; }
}
