.fp-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ── Left: image ── */
.fp-img-wrap {
    position: relative;
    border-radius: 2em;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.fp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Location pill — top left */
.fp-location {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    color: #2d3a2e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.45em 0.9em;
    border-radius: 9999px;
}

.fp-location svg {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

/* Tree goal pill — bottom left */
.fp-goal {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(45, 58, 46, 0.82);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 0.6em 1em;
    border-radius: 0.75em;
    line-height: 1.25;
}

.fp-goal-number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.01em;
}

.fp-goal-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    display: block;
}

/* ── Right: content ── */
.fp-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fp-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.fp-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}

.fp-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.25rem 0;
}

.fp-intro {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.fp-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.fp-btn-secondary,
.fp-btn-secondary:hover,
.fp-btn-secondary:focus,
.fp-btn-secondary:active {
    background: var(--global-palette-btn-sec-bg) !important;
    color: var(--global-palette-btn-sec) !important;
}

@media (max-width: 900px) {
    .fp-wrap {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}
