/* ──────────────────────────────────────────────────────────────
   DESTINATIONS PAGE
────────────────────────────────────────────────────────────── */

.destinations-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .25)
        ),
        url("../images/hero-bg.webp");
    background-size: cover;
    background-position: center;
}

.hero-intro {
    max-width: 42rem;
    color: rgba(250, 248, 244, .9);
    font-size: 1.125rem;
    line-height: 1.8;
}

.route-action {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent);
}

.destinations-benefits {
    padding: 6rem 0;
    background: var(--color-paper);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-card {
    padding: 2rem;
    border: 1px solid var(--color-border);
    background: var(--color-paper);
    transition: transform .25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-number {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    color: var(--color-accent);
    font-size: 2rem;
}

.benefit-card h3 {
    font-family: var(--font-serif);
    margin-bottom: .75rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.featured-destinations {
    padding: 6rem 0;
    background: var(--color-surface);
}

.featured-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.destination-card {
    padding: 2rem;
    background: var(--color-paper);
    border: 1px solid var(--color-border);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

.destination-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: .75rem;
}

.destination-card p {
    color: var(--color-muted);
}

.destinations-cta {
    padding: 7rem 0;
    text-align: center;
}

.destinations-cta h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destinations-cta p {
    max-width: 42rem;
    margin: 0 auto 2rem;
    color: var(--color-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .destinations-hero {
        min-height: 50vh;
    }
    .destinations-cta h2 {
        font-size: 2.25rem;
    }
}