/* ================================================================
   Strawberrylace — Killer Footer
   ================================================================ */
.sl-footer {
    color: #fff;
    background: #0F0F10;
    font-family: 'Neue Montreal', 'Inter Tight', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}

/* ---------- CTA band ---------- */
.sl-cta-band {
    position: relative;
    padding: clamp(64px, 9vw, 140px) clamp(24px, 6vw, 80px) clamp(48px, 6vw, 96px);
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 780px) { .sl-cta-band { grid-template-columns: 1fr; } }

.sl-cta-band h2 {
    font-size: clamp(40px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 0;
    font-weight: 500;
    max-width: 14ch;
}
.sl-cta-band h2 em {
    font-style: normal;
    color: #F5728C;
    font-weight: 400;
    padding: 0 .04em;
}
.sl-cta-band p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin: 0 0 24px;
    max-width: 42ch;
}
.sl-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sl-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #fff;
    color: #0F0F10;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s ease, transform .2s ease;
}
.sl-cta-btn:hover { background: #F5728C; color: #fff; transform: translateX(2px); }
.sl-cta-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.sl-cta-btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Retainer pill */
.sl-retainer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(90,233,139,0.12);
    color: #5AE98B;
    border: 1px solid rgba(90,233,139,0.25);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: 20px;
}
.sl-retainer .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #5AE98B;
    box-shadow: 0 0 0 3px rgba(90,233,139,0.25);
    animation: slPulse 2.4s ease-in-out infinite;
}
@keyframes slPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(90,233,139,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(90,233,139,0.08); }
}

/* ---------- Links block ---------- */
.sl-links {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 88px) clamp(24px, 6vw, 80px) clamp(40px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 900px) { .sl-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sl-links { grid-template-columns: 1fr; } }

.sl-brand-col__logo {
    display: block;
    width: 180px;
    max-width: 70%;
    height: auto;
    margin: 0 0 18px;
}
.sl-brand-col__logo img { width: 100%; height: auto; display: block; }
.sl-brand-col p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 32ch;
}

.sl-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 16px;
}
.sl-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sl-col a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 15px;
    transition: color .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sl-col a:hover { color: #F5728C; }
.sl-col a .ext {
    font-size: 10px;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* ---------- Base bar ---------- */
.sl-base {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px clamp(24px, 6vw, 80px);
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    gap: 16px;
    flex-wrap: wrap;
}
.sl-base a { color: rgba(255,255,255,0.7); text-decoration: none; }
.sl-base a:hover { color: #fff; }

/* ---------- Legacy compatibility ---------- */
/* Keep old .footer rules as fallback safety so nothing breaks that still references them */
.footer { background: #0F0F10; padding: 40px 20px; color: #fff; }
.footer-links { display: flex; justify-content: space-between; align-items: start; }
