/* ── Footer ────────────────────────────────────────────── */
.cch-footer {
    background: var(--wp--preset--color--cch-dark);
    color: var(--wp--preset--color--cch-white);
}
.cch-footer a {
    color: rgba(255, 255, 255, 0.47);
    text-decoration: none;
}
.cch-footer a:hover { color: var(--wp--preset--color--cch-white); }

.cch-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px;
}
.cch-footer-col h4 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--wp--preset--color--cch-white);
}
.cch-footer-col p,
.cch-footer-col a {
    font-size: 14px;
    line-height: 1.6;
}

.cch-footer-hours {
    border-left: 2px solid var(--wp--preset--color--cch-blue);
    padding-left: 16px;
}
.cch-footer-hours h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: var(--wp--preset--color--cch-white);
}
.cch-footer-hours p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cch-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.47);
}
.cch-footer-bottom .cch-social-icons { display: flex; gap: 10px; }
.cch-footer-bottom .cch-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.47);
    transition: color 0.2s;
}
.cch-footer-bottom .cch-social-icons a:hover { color: var(--wp--preset--color--cch-white); }
.cch-footer-bottom .cch-social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 960px) {
    .cch-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .cch-footer-top { grid-template-columns: 1fr; }
}

/* ── Override heading font in footer ───────────────────── */
.cch-footer h3,
.cch-footer h4 {
    font-family: var(--wp--preset--font-family--comfortaa);
    color: var(--wp--preset--color--cch-white);
}
