/* ============================================================
   GCWAL — Homepage · Version B (split hero, "Option F")
   Copy on the left; the original building photo fills the
   entire right half edge-to-edge, fading into the dark
   background where it meets the text. Loaded only on
   home-versionB.html (see EXTRA_CSS in scripts/build.py).
   ============================================================ */

.homeb-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    padding: 8rem clamp(1.5rem, 5vw, 6rem) 4rem;
    padding-right: 0;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse 70% 55% at 78% 40%,
            rgba(255, 184, 0, 0.07),
            transparent 70%
        ),
        var(--dark);
}

.homeb-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

/* ---- copy column (left half; photo occupies the right) ---- */
.homeb-copy {
    max-width: min(560px, 44vw);
    margin-left: max(0px, calc((100vw - var(--container-max)) / 2));
}

.homeb-copy .lp-eyebrow {
    margin-bottom: 1.5rem;
}

.homeb-copy h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.homeb-copy h1 span {
    color: var(--gold-accent);
    font-style: italic;
}

.homeb-copy p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--white-80);
    max-width: 540px;
    margin-bottom: 1.25rem;
}

/* ---- watch-video link ---- */
.homeb-video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.5rem 0 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gold-accent);
    text-decoration: none;
}

.homeb-video-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.homeb-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.4);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.homeb-video-link:hover .homeb-play {
    background: rgba(255, 184, 0, 0.22);
    transform: scale(1.06);
}

.homeb-play svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.homeb-copy .cta-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ---- photo: fills the full right half, edge to edge ---- */
.homeb-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    margin: 0;
}

.homeb-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keep the building facade + GCWAL signage in frame */
    object-position: 86% 38%;
    display: block;
}

/* fade the photo's left edge into the page background */
.homeb-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--dark) 0%, transparent 32%),
        linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 30%);
    pointer-events: none;
}

/* ---- "What brings you here?" path cards ---- */
.homeb-path {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.card.homeb-path h3 {
    color: var(--gold-accent);
}

.homeb-path p {
    color: var(--white-80);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.homeb-path-cta {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-accent);
    transition: letter-spacing 0.2s ease;
}

.homeb-path:hover .homeb-path-cta {
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ---- responsive: stack copy, then a plain rounded photo ---- */
@media (max-width: 900px) {
    .homeb-hero {
        padding: 7.5rem 1.5rem 3.5rem;
        min-height: auto;
    }

    .homeb-inner {
        gap: 2.5rem;
    }

    .homeb-copy {
        max-width: none;
        margin-left: 0;
    }

    .homeb-photo {
        position: static;
        width: auto;
        max-width: 560px;
    }

    .homeb-photo img {
        height: auto;
        border-radius: 14px;
        object-position: center;
    }

    .homeb-photo::after {
        display: none;
    }
}
