/* HERO SECTION */
.page-hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 3.5rem 2rem 3rem;
    overflow: hidden;
    background: var(--navy);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/webp/about-hero.webp') center / cover no-repeat;
    opacity: .30;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.page-hero .eyebrow {
    color: var(--mist);
}

.page-hero .eyebrow::before {
    background: var(--mist);
}

.page-hero h1 {
    margin-bottom: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
}

.page-hero h1 em {
    font-style: italic;
    color: var(--mist);
}

.page-hero p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
}

.page-hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    line-height: 0;
}

/* ACCOMMODATION GRID & CARDS */
.accomm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.accomm-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .2s, box-shadow .2s;
}

.accomm-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.accomm-img {
    height: 170px;
    overflow: hidden;
}

.accomm-body {
    padding: 1rem 1.1rem 1.2rem;
}

/* ACCOMMODATION TYPOGRAPHY */
.accomm-type {
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 700;
    color: var(--sky);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.accomm-name {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--navy);
}

.accomm-desc {
    margin-bottom: 8px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--muted);
}

.accomm-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--ocean);
}

.accomm-sub {
    font-size: 11px;
    color: var(--muted);
}

/* TIPS SECTION */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tip-box {
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.tip-box h4 {
    margin-bottom: .5rem;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--navy);
}

.tip-box p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
    .accomm-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .accomm-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}