/* ── Shared page hero (FAQ, Services, Contact, etc.) ── */

.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(48, 46, 29, 0.2) 0%,
        rgba(48, 46, 29, 0.5) 100%
    );
    pointer-events: none;
}

.page-hero-text {
    position: absolute;
    bottom: 12%;
    left: 6%;
    max-width: 80%;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-text-on-dark);
    margin: 0 0 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
}

.page-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-light-brown-drab);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
}

/* ── Placeholder content sections ── */

.faq-content-inner,
.services-content-inner,
.contact-content-inner,
.gallery-landing-content-inner,
.gallery-set-content-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 3.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.75rem;
    }

    .page-hero-text {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 95%;
        width: 95%;
    }
}
