.op-site-footer {
    position: relative;
    margin-top: 5rem;
    padding: 1.1rem 0 1.5rem;
    overflow: hidden;
    color: #eef4f0;
    background:
        radial-gradient(circle at 12% 8%, rgba(119, 143, 128, 0.28), transparent 30rem),
        radial-gradient(circle at 88% 82%, rgba(222, 194, 187, 0.13), transparent 26rem),
        var(--op-color-forest-900, #2e4438);
}

.op-site-footer .op-container {
    width: min(calc(100% - 2rem), 78rem);
    margin-inline: auto;
}

.op-footer-cta {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3.25rem;
    padding: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(10, 22, 15, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.op-footer-cta-copy {
    max-width: 42rem;
}

.op-footer-eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #c6d6cc;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.op-footer-cta h2 {
    max-width: 36rem;
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.op-footer-cta p {
    max-width: 38rem;
    margin: 0.65rem 0 0;
    color: #cbd7cf;
    font-size: 0.94rem;
    line-height: 1.65;
}

.op-footer-cta-actions {
    display: grid;
    gap: 0.7rem;
}

.op-footer-cta-primary,
.op-footer-cta-secondary {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 780;
    text-align: center;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.op-footer-cta-primary {
    color: var(--op-color-forest-900, #2e4438);
    background: #fff;
}

.op-footer-cta-primary:hover {
    color: var(--op-color-forest-900, #2e4438);
    background: #edf3ef;
    transform: translateY(-1px);
}

.op-footer-cta-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.op-footer-cta-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-1px);
}

.op-footer-main {
    display: grid;
    gap: 2rem;
}

.op-footer-brand-block {
    max-width: 24rem;
}

.op-footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.op-footer-brand img {
    display: block;
    width: auto;
    height: 2.45rem;
    filter: brightness(0) invert(1);
}

.op-footer-brand-block p {
    max-width: 22rem;
    margin: 1rem 0 0;
    color: #bdcbc2;
    font-size: 0.93rem;
    line-height: 1.7;
}

.op-footer-column h3 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.op-footer-column nav {
    display: grid;
    gap: 0.55rem;
}

.op-footer-column a {
    width: fit-content;
    color: #cbd7cf;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.op-footer-column a:hover {
    color: #fff;
    transform: translateX(2px);
}

.op-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 2.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.op-footer-bottom p {
    margin: 0;
    color: #9fb0a5;
    font-size: 0.8rem;
}

@media (max-width: 31rem) {
    .op-site-footer {
        margin-top: 3.5rem;
    }

    .op-footer-cta {
        padding: 1.3rem;
    }

    .op-footer-main {
        gap: 1.65rem;
    }
}

@media (min-width: 40rem) and (max-width: 51.99rem) {
    .op-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (min-width: 52rem) {
    .op-footer-cta {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        padding: 2rem 2.2rem;
    }

    .op-footer-cta-actions {
        grid-template-columns: repeat(2, auto);
    }

    .op-footer-main {
        grid-template-columns: minmax(16rem, 1.4fr) repeat(3, minmax(8rem, 0.7fr));
        align-items: start;
    }

    .op-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

