/* ─── Footer ──────────────────────────────────────────── */

.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand column */
.footer-brand {}
.footer-logo {
    margin-bottom: 16px;
}
.footer-logo img { height: 36px; }
.footer-logo__text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}
.footer-logo__text span { color: var(--cyan); }
.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-social a {
    width: 34px; height: 34px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    transition: var(--t-fast);
    text-decoration: none;
}
.footer-social a:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.footer-reg {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
}
.footer-reg strong { color: rgba(255,255,255,.55); }

/* Column headings */
.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    transition: var(--t-fast);
    text-decoration: none;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

/* Contact column */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan); }
.footer-contact-item a {
    color: rgba(255,255,255,.55);
    transition: var(--t-fast);
    text-decoration: none;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-hours {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: var(--t-fast); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Trust strip inside footer */
.footer-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-pill);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
}
.footer-badge svg { color: var(--cyan); }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
