/* THERAPEUTIC FOOTER */
.big-footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(44, 53, 39, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-neon-green);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: #6B7A66;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: clamp(80px, 20vw, 400px);
    font-weight: 300;
    line-height: 0.8;
    text-align: center;
    width: 100%;
    letter-spacing: -0.02em;
    color: rgba(106, 142, 97, 0.1); /* Very subtle bamboo green */
    user-select: none;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

/* Shared product-style footer used by the newer support pages */
.site-footer {
    align-items: center;
    background: rgba(201, 137, 126, 0.92);
    color: #fff9f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6rem, 8vw, 8rem) 4.5vw 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.4fr repeat(4, 0.75fr) 1.1fr;
    margin: 0 auto;
    max-width: 1240px;
    text-align: center;
}

.site-footer h3 {
    color: #fff9f0;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a,
.site-footer p {
    color: rgba(255, 249, 240, 0.94);
    font-size: 0.92rem;
    text-decoration: none;
}

.site-footer p {
    line-height: 1.72;
    margin: 0;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: max-content;
    text-transform: uppercase;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1;
}

.footer-brand span {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.socials a {
    border: 1px solid rgba(255, 249, 240, 0.42);
    border-radius: 50%;
    display: grid;
    height: 2.25rem;
    place-items: center;
    width: 2.25rem;
}

.email-form {
    display: flex;
    margin-top: 1rem;
}

.email-form input {
    background: #fff9f0;
    border: 1px solid rgba(64, 54, 50, 0.18);
    border-radius: 6px 0 0 6px;
    color: #403632;
    flex: 1;
    min-width: 0;
    padding: 0.9rem;
}

.email-form button {
    background: #b88e4a;
    border: 0;
    border-radius: 0 6px 6px 0;
    color: #fff9f0;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 1rem;
}

.legal {
    align-items: center;
    border-top: 1px solid rgba(255, 249, 240, 0.22);
    color: rgba(255, 249, 240, 0.88);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.84rem;
    gap: 1.2rem;
    justify-content: space-between;
    margin: 3rem auto 0;
    max-width: 1240px;
    padding-top: 1.4rem;
    width: 100%;
}

.legal a {
    color: rgba(255, 249, 240, 0.88);
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        display: grid;
    }

    .email-form input {
        border-radius: 6px 6px 0 0;
    }

    .email-form button {
        border-radius: 0 0 6px 6px;
        min-height: 48px;
    }

    .legal {
        justify-content: center;
        text-align: center;
    }
}
