/* 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/riva-promenade.webp') center / cover no-repeat;
    opacity: .45;
}

.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;
}

/* =========================================
   3. CONTACT MAIN LAYOUT
   ========================================= */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* =========================================
   4. CONTACT DETAILS SIDEBAR
   ========================================= */
.contact-details {
    padding: 1.75rem;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
}

.contact-details h3 {
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--mist);
}

.cd-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cd-icon {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 18px;
}

.cd-label {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--mist);
    letter-spacing: .8px;
    text-transform: uppercase;
}

.cd-val {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .75);
}

/* =========================================
   5. CONTACT FORM
   ========================================= */
.form-wrap {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.form-title {
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
}

.form-success {
    display: none;
    margin-top: .75rem;
    padding: 1.25rem 1.5rem;
    font-size: 13.5px;
    font-weight: 600;
    color: #2e7d32;
    text-align: center;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius);
}

/* =========================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}