/* Outdoor Editorial UI — Resort station pages */

.resort-hero {
    margin-top: 76px;
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 58vh;
    padding: 4rem 0 3rem;
    color: #fff;
    overflow: hidden;
    background-color: var(--brand-ink, #1e293b);
}

.resort-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.resort-hero__media img,
.resort-hero__media picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resort-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .45) 55%, rgba(15, 23, 42, .2) 100%);
    z-index: 1;
}

.resort-hero__content {
    position: relative;
    z-index: 2;
}

.resort-hero__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1;
    margin-bottom: .75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.resort-hero__lead {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.resort-toc {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    padding: 1rem 1.25rem;
}

.resort-toc__list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.resort-toc__list a {
    color: var(--brand-ink, #1e293b);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
}

.resort-toc__list a:hover {
    color: var(--brand-primary, #800020);
    text-decoration: underline;
}

.resort-section {
    background: var(--brand-surface, #e2e8f0);
}

.resort-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--brand-ink, #1e293b);
}

.resort-content h2,
.resort-content h3 {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--brand-primary, #800020);
}

.resort-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.resort-content h3 {
    font-size: 1.45rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.resort-content p {
    margin-bottom: 1.25rem;
}

.resort-card {
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.resort-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(30, 41, 59, .12);
}

.resort-card__body {
    padding: 1.25rem;
}

.resort-card__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-ink, #1e293b);
    margin-bottom: .5rem;
}

.resort-card__icon {
    color: var(--brand-secondary, #ff6b35);
    margin-right: .5rem;
}

.resort-booking {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    padding: 1.5rem;
    border-top: 4px solid var(--brand-primary, #800020);
}

.resort-booking__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--brand-primary, #800020);
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

/* Snow report integrated */
.snow-report {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    overflow: hidden;
}

.snow-report__header {
    background: var(--brand-ink, #1e293b);
    color: #fff;
    padding: .875rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.snow-report__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 1.15rem;
}

.snow-report__body {
    padding: 1.25rem;
}

.snow-report__stat {
    text-align: center;
    padding: .75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.snow-report__value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-primary, #800020);
}

.snow-report__label {
    font-size: .8rem;
    color: var(--brand-muted, #5c6570);
}

.snow-report__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.snow-report__row:last-child {
    border-bottom: 0;
}

/* Station data */
.station-data {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    padding: 1.5rem;
}

.station-data__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--brand-primary, #800020);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.station-data__subtitle {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-ink, #1e293b);
    margin-bottom: .5rem;
}

.station-data__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.station-data__list li {
    padding: .25rem 0;
    color: var(--brand-ink, #1e293b);
}

.station-data__progress {
    height: 5px;
    margin-bottom: 1rem;
}

/* FAQ */
.resort-faq {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .08);
    padding: 2rem;
}

.resort-faq__title {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--brand-primary, #800020);
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
}

.resort-faq__item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.resort-faq__item:last-child {
    border-bottom: 0;
}

.resort-faq__question {
    font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--brand-ink, #1e293b);
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.resort-faq__answer {
    color: var(--brand-muted, #5c6570);
    line-height: 1.7;
    margin: 0;
}

/* Soft CTA */
.resort-cta-soft {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--brand-primary, #800020);
    font-weight: 600;
    border: 1px solid rgba(128, 0, 32, .12);
    background: rgba(128, 0, 32, .04);
    padding: .5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: .95rem;
}

.resort-cta-soft:hover {
    background: rgba(128, 0, 32, .08);
    color: var(--brand-primary, #800020);
}

@media (max-width: 767.98px) {
    .resort-hero {
        min-height: 50vh;
        padding: 3rem 0 2rem;
    }

    .resort-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .resort-card {
        transition: none;
    }
}
