/* ── CTA STRIP ── */
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip-left h2 { font-size: clamp(26px,3vw,44px); color: var(--green); margin-bottom: 8px; }
.cta-strip-left p  { font-size: 15px; color: rgba(14,61,53,0.68); font-family: 'DM Sans',sans-serif; }
.cta-strip-btns    { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* ── SITE FOOTER ── */
.site-footer { background: var(--off); padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-logo-name { font-family: 'DM Sans',sans-serif; font-size: 17px; font-weight: 700; color: var(--green); letter-spacing: .06em; text-transform: uppercase; display: block; }
.footer-logo-tag  { font-size: 9.5px; color: var(--amber); font-weight: 600; letter-spacing: .05em; display: block; margin-top: 2px; }
.footer-brand p   { font-size: 13.5px; color: var(--green); line-height: 1.75; margin-bottom: 20px; max-width: 270px; }
.footer-social    { display: flex; gap: 10px; }
.social-btn       { width: 34px; height: 34px; background: var(--off); border: 1px solid var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--r); text-decoration: none; }
.social-btn:hover { background: var(--amber); border-color: var(--amber); }
.social-btn svg   { stroke: var(--green); transition: stroke var(--r); }
.social-btn:hover svg { stroke: var(--green); }
.footer-col h4    { font-family: 'DM Sans',sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--green); margin-bottom: 16px; }
.footer-col a     { display: block; font-size: 13.5px; color: var(--green); text-decoration: none; margin-bottom: 9px; transition: color .2s; font-family: 'DM Sans',sans-serif; }
.footer-col a:hover { color: var(--amber-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--green); margin-bottom: 12px; line-height: 1.55; font-family: 'DM Sans',sans-serif; }
.footer-contact-item svg { stroke: var(--amber); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { display: inline; color: var(--green); margin: 0; font-size: inherit; }
.footer-contact-item a:hover { color: var(--amber-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 26px 0 32px; font-size: 12.5px; color: var(--green); font-family: 'DM Sans',sans-serif; }
.footer-bottom a { color: var(--green); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--amber-light); }
.footer-legal { display: flex; gap: 22px; }

@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 680px)  {
    .footer-top { grid-template-columns: 1fr; }
    .cta-strip  { flex-direction: column; text-align: center; }
    .cta-strip-btns { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
