/* Minimal contact strip — inherits page text/background; no band or extra chrome */
/* Checkout page: body text is dark for the form, but the page bg is blue — keep footer light */
body:has(main.checkout-shell) .site-contact-footer {
    color: rgba(255, 255, 255, 0.92);
}

/* Home hero: fixed to viewport bottom — avoids stacking main (100dvh) + footer scroll */
.site-contact-footer--hero {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
}

.site-contact-footer {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(0.68rem, 1.05vw, 0.8125rem);
    line-height: 1.35;
    font-weight: 400;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
}

.site-contact-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: start;
}

.site-contact-footer__col p {
    margin: 0;
    padding: 0;
}

.site-contact-footer__col p + p {
    margin-top: 0.15em;
}

@media (max-width: 640px) {
    .site-contact-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.3rem 0.5rem;
    }
}
