/* =====================================================
   DESTINATION PAGES
   ===================================================== */

/* Hero */
.dest-hero {
  position: relative;
  height: 72vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  margin-top: 72px;
}
.dest-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.dest-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(10% .02 242 / .88) 0%,
    oklch(10% .02 242 / .35) 55%,
    oklch(10% .02 242 / .15) 100%);
}
.dest-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
}
.dest-hero__content .eyebrow--light { margin-bottom: .6rem; display: block; }
.dest-hero__content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: .4rem 0 .8rem;
}
.dest-hero__content p {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 560px;
}
.dest-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: oklch(82% .08 145);
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  transition: color .2s;
}
.dest-back:hover { color: #fff; }

/* Quick facts bar */
.dest-facts-bar {
  background: var(--dark);
  padding: 1.4rem 0;
}
.dest-facts-bar__inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.dest-facts-bar__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: oklch(88% .008 90);
}
.dest-facts-bar__item i {
  color: var(--green);
  font-size: 1rem;
  width: 1.2rem;
  text-align: center;
}
.dest-facts-bar__item span { font-size: .88rem; }
.dest-facts-bar__item strong { color: #fff; }

/* Overview */
.dest-overview { padding: 5rem 0; background: var(--bg); }
.dest-overview__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.dest-overview__body .eyebrow { display: block; margin-bottom: .5rem; }
.dest-overview__body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  color: var(--dark);
}
.dest-overview__body p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: 65ch;
}
.dest-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.dest-sidebar__head {
  background: var(--green);
  color: #fff;
  padding: 1.2rem 1.6rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.dest-sidebar__body { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.dest-sib-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.dest-sib-item:last-child { border-bottom: none; padding-bottom: 0; }
.dest-sib-item__ico {
  width: 2.2rem; height: 2.2rem;
  background: var(--green-xlt);
  color: var(--green);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.dest-sib-item__label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.dest-sib-item__val {
  font-weight: 600;
  color: var(--dark);
  font-size: .9rem;
  margin-top: .15rem;
}

/* Things to do */
.dest-things { padding: 5rem 0; background: var(--green-xlt); }
.dest-things .section-hd { margin-bottom: 3rem; }
.dest-things__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.dest-thing {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}
.dest-thing:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.dest-thing__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: .8rem;
}
.dest-thing__ico {
  width: 3rem; height: 3rem;
  background: var(--green-xlt);
  color: var(--green);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.dest-thing h3 { font-size: 1.05rem; margin-bottom: .55rem; color: var(--dark); }
.dest-thing p { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* Travel Info */
.dest-info { padding: 5rem 0; background: var(--bg); }
.dest-info .section-hd { margin-bottom: 3rem; }
.dest-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.dest-info__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
}
.dest-info__card h3 {
  display: flex; align-items: center; gap: .65rem;
  font-size: 1.05rem; margin-bottom: 1.2rem; color: var(--dark);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green-light);
}
.dest-info__card h3 i { color: var(--green); }
.dest-info__card ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.dest-info__card li {
  font-size: .88rem; color: var(--text); line-height: 1.6;
  padding-left: 1.3rem; position: relative;
}
.dest-info__card li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--green); font-size: .78rem; top: .1rem;
}

/* CTA */
.dest-cta {
  padding: 6rem 0;
  background: var(--dark);
  text-align: center;
}
.dest-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
}
.dest-cta p {
  color: oklch(78% .01 242);
  margin-bottom: 2.4rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.dest-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 960px) {
  .dest-overview__grid { grid-template-columns: 1fr; }
  .dest-sidebar { position: static; }
  .dest-things__grid { grid-template-columns: repeat(2, 1fr); }
  .dest-info__grid { grid-template-columns: 1fr; }
  .dest-facts-bar__inner { gap: 1.6rem; }
}
@media (max-width: 560px) {
  .dest-things__grid { grid-template-columns: 1fr; }
  .dest-hero { height: 60vh; }
}
