/* Contact Page */

.contact-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
    background: var(--green-darker);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(7, 18, 12, 0.88) 0%,
        rgba(7, 18, 12, 0.72) 50%,
        rgba(7, 18, 12, 0.88) 100%
    );
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}

.contact-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.page-content .contact-grid {
    align-items: stretch;
}

.contact-hours {
    margin-top: 24px;
    font-size: 13px;
    color: #7a8a80;
}

.contact-info-details .contact-item {
    color: #b8c4bc;
    margin-bottom: 20px;
}

.contact-info-details .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-visual {
    margin-top: auto;
    padding-top: 28px;
}

.contact-info-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.28);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
