.destination-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(229, 123, 60, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 106, 105, 0.18), transparent 30%),
        linear-gradient(180deg, #fff9f2 0%, #fffdf9 48%, #f8fcfb 100%);
}

.destination-shell {
    padding-bottom: 4rem;
}

.destination-page .site-header {
    width: min(calc(100% - 2rem), 1360px);
}

.destination-detail-page {
    width: min(calc(100% - 2rem), 1360px);
    margin: 0 auto;
    padding: 1.4rem 0 0;
}

.destination-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 1.2rem;
    padding: 1.2rem;
    overflow: hidden;
}

.destination-hero-media {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 106, 105, 0.32), rgba(229, 123, 60, 0.22));
}

.destination-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-image-glow {
    position: absolute;
    inset: auto 8% 8% auto;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 231, 198, 0.42), transparent 72%);
    filter: blur(8px);
}

.destination-hero-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 0.8rem 0.4rem;
}

.destination-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.4rem);
    line-height: 0.98;
}

.destination-hero-description {
    margin: 0;
    max-width: 58ch;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.destination-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.destination-hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.82);
    color: var(--color-teal-deep);
    box-shadow: 0 16px 30px rgba(12, 79, 84, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.destination-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.destination-package-section {
    padding: 2.3rem 0 0;
}

.destination-packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding-top: 0.5rem;
}

@media (max-width: 1080px) {
    .destination-hero {
        grid-template-columns: 1fr;
    }

    .destination-hero-media {
        min-height: 300px;
    }
}

@media (max-width: 720px) {
    .destination-page .site-header,
    .destination-detail-page {
        width: calc(100% - 0.9rem);
    }

    .destination-detail-page {
        padding-top: 0.7rem;
    }

    .destination-hero {
        padding: 0.85rem;
        gap: 0.9rem;
    }

    .destination-hero-media {
        min-height: 240px;
        border-radius: 24px;
    }

    .destination-hero-copy {
        padding: 0.1rem;
    }

    .destination-hero-copy h1 {
        font-size: 2.3rem;
    }

    .destination-packages-grid {
        grid-template-columns: 1fr;
    }
}
