/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    position: relative;
    margin-top: var(--sp-9);
    background: var(--c-secondary);
    color: rgba(255, 255, 255, 0.82);
}

.footer-wave {
    position: absolute;
    left: 0; right: 0;
    top: 1px;
    transform: translateY(-100%);
    line-height: 0;
}
.footer-wave svg { width: 100%; height: clamp(34px, 6vw, 90px); display: block; }
.footer-wave path { fill: var(--c-secondary); }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-block: var(--sp-7) var(--sp-6);
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
}
.footer-tagline { margin-top: var(--sp-2); color: rgba(255, 255, 255, 0.6); max-width: 30ch; }

.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    transition: background-color var(--speed) ease, transform var(--speed) var(--ease-out);
}
.footer-social a:hover { background: var(--c-primary); border-color: var(--c-primary); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-heading {
    font-family: var(--font-mono);
    font-size: var(--fs-200);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--sp-3);
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    padding-block: 0.3rem;
    width: fit-content;
    transition: color var(--speed) ease, transform var(--speed) var(--ease-out);
}
.footer-col a:hover { color: var(--c-accent); text-decoration: none; transform: translateX(4px); }
.footer-contact address { padding-block: 0.3rem; color: rgba(255, 255, 255, 0.6); }
.footer-hours { color: rgba(255, 255, 255, 0.45); margin-top: var(--sp-2); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: space-between;
    align-items: center;
    padding-block: var(--sp-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-300);
    color: rgba(255, 255, 255, 0.5);
}
.footer-status { display: inline-flex; align-items: center; gap: 0.5rem; }

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
