/* =========================================================================
   N-DESTINATION-HERO – Editorial destination hero
   ========================================================================= */

.n-destination-hero {
  --ndh-overlay-opacity: 0.38;
  --ndh-text-color: #fff;
  --ndh-accent-color: #d2ae75;
  position: relative;
  overflow: hidden;
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  color: var(--ndh-text-color);
  background: #181614;
}

.n-destination-hero__media,
.n-destination-hero__overlay {
  position: absolute;
  inset: 0;
}

.n-destination-hero__media {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.n-destination-hero__overlay {
  background:
    linear-gradient(180deg, rgba(9, 8, 8, 0.22) 0%, rgba(9, 8, 8, var(--ndh-overlay-opacity)) 58%, rgba(9, 8, 8, 0.72) 100%);
}

.n-destination-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--vf-max-width, 1500px));
  margin: 0 auto;
  padding: 0 var(--vf-section-gutter, clamp(1.5rem, 3vw, 4rem));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.n-destination-hero__content {
  max-width: 49rem;
}

.n-destination-hero__eyebrow,
.n-destination-hero__location-note,
.n-destination-hero__meta-label,
.n-destination-hero__button {
  font-family: var(--vf-font-body, 'Montserrat', sans-serif);
}

.n-destination-hero__eyebrow,
.n-destination-hero__location-note,
.n-destination-hero__meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: var(--vf-tracking-wider, 0.25em);
}

.n-destination-hero__eyebrow {
  margin-bottom: 1rem;
  font-size: var(--vf-section-eyebrow-size, clamp(0.65rem, 0.9vw, 0.8rem));
  color: rgba(255, 255, 255, 0.92);
}

.n-destination-hero__location-note {
  margin-bottom: 1.4rem;
  font-size: 0.76rem;
  color: var(--ndh-accent-color);
}

.n-destination-hero__title {
  margin: 0;
  font-family: var(--vf-font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: none;
  text-wrap: balance;
  color: var(--ndh-text-color);
}

.n-destination-hero__description {
  margin: 1.8rem 0 0;
  max-width: 42rem;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.n-destination-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  margin-top: 2rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: var(--vf-tracking-wider, 0.25em);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.n-destination-hero__button:hover,
.n-destination-hero__button:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.n-destination-hero__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(245, 240, 234, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.n-destination-hero__summary-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8.2rem;
  padding: 1.25rem 1.35rem;
}

.n-destination-hero__summary-item + .n-destination-hero__summary-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.n-destination-hero__summary-item--price {
  min-width: 0;
}

.n-destination-hero__meta-value {
  display: block;
  font-family: var(--vf-font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--ndh-text-color);
}

.n-destination-hero__meta-value--accent {
  color: var(--ndh-accent-color);
  letter-spacing: 0.18em;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.n-destination-hero__meta-label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .n-destination-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .n-destination-hero__summary {
    max-width: 42rem;
  }
}

@media (max-width: 767px) {
  .n-destination-hero__summary {
    grid-template-columns: 1fr;
  }

  .n-destination-hero__summary-item + .n-destination-hero__summary-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
