

.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
    z-index: 1;
}
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.about-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 56px;
    letter-spacing: 0.4px;
}
.about-hero .hero-content p {
    color: var(--gold);
    margin-top: 8px;
    line-height: 1.6;
}

.contact-hero .hero-content {
    padding-top: 80px;
}

.contact-hero {
    min-height: 70vh;
}
.contact-hero .contact-hero-details {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    z-index: 2;
    width: clamp(320px, 88%, 1000px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.contact-hero .contact-card {
    background: var(--gold);
    color: var(--dark-blue);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 16px 32px rgba(0,0,0,0.10);
    border-radius: 10px;
    padding: 0;
}
.contact-card .contact-row + .contact-row {
    margin-top: 12px;
    padding-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-card .contact-label {
    font-weight: 700;
    font-family: 'Merriweather', serif;
    margin-bottom: 4px;
    color: var(--dark-blue);
    font-size: 23px;
}
.contact-card .contact-value {
    font-size: 17px;
    font-weight: 600;
}
.contact-card .card-link,
.contact-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
    width: 100%;
    height: 100%;
}
.contact-card .card-link {
    text-decoration: none;
    color: inherit;
}
.contact-card .contact-value a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}
@media (max-width: 992px) {
    .contact-hero .hero-content {
        padding-top: 72px;
    }
    .contact-hero .contact-hero-details {
        grid-template-columns: 1fr;
        width: clamp(280px, 88%, 520px);
        left: 50%;
        bottom: 4%;
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .about-hero.contact-hero {
        min-height: 30vh;
    }
    .about-hero.contact-hero .hero-content {
        padding-top: calc(var(--mobile-safe-top, 100px) + 170px);
    }
}
