.cp-site-footer {
    --cp-footer-blue: #052d62;
    --cp-footer-blue-soft: #0b4b92;
    --cp-footer-gold: #c69a3b;
    --cp-footer-gold-light: #f0d28e;
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin: 0 0 0 -50vw;
    padding: clamp(40px, 6vw, 76px) clamp(20px, 5vw, 72px);
    border-top: 5px solid var(--cp-footer-gold);
    background:
        radial-gradient(circle at 86% 12%, rgba(255,255,255,.09), transparent 24%),
        linear-gradient(125deg, #041f46, var(--cp-footer-blue) 58%, var(--cp-footer-blue-soft));
    color: #fff;
    font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    box-sizing: border-box;
}
.cp-site-footer *,
.cp-site-footer *::before,
.cp-site-footer *::after { box-sizing: border-box; }
.cp-site-footer__inner {
    display: grid;
    width: min(1180px, 100%);
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
    margin-inline: auto;
}
.cp-site-footer__about { position: relative; }
.cp-site-footer__about::before {
    position: absolute;
    top: 3px;
    left: -22px;
    width: 4px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(var(--cp-footer-gold-light), var(--cp-footer-gold));
    content: "";
}
.cp-site-footer h2 {
    margin: 0 0 17px !important;
    color: #fff !important;
    font-size: clamp(27px, 3vw, 41px) !important;
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.05;
}
.cp-site-footer__about > p {
    max-width: 720px;
    margin: 0 !important;
    color: rgba(255,255,255,.82) !important;
    font-size: clamp(15px, 1.3vw, 18px) !important;
    line-height: 1.75;
}
.cp-site-footer__email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--cp-footer-gold-light) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}
.cp-site-footer__email:hover,
.cp-site-footer__email:focus { color: #fff !important; text-decoration: underline !important; text-underline-offset: 4px; }
.cp-site-footer__social {
    display: grid;
    gap: 12px;
}
.cp-site-footer__social > a {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.cp-site-footer__social > a:hover,
.cp-site-footer__social > a:focus {
    outline: none;
    border-color: var(--cp-footer-gold-light);
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}
.cp-site-footer__social-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 14px;
    background: #fff;
}
.cp-site-footer__social-icon svg {
    width: 25px;
    height: 25px;
    overflow: visible;
}
.cp-site-footer__social-icon--instagram svg {
    fill: none;
    stroke: #7b2cbf;
    stroke-width: 1.8;
}
.cp-site-footer__social-icon--instagram .cp-site-footer__social-dot {
    fill: #e44576;
    stroke: none;
}
.cp-site-footer__social-icon--tiktok svg {
    fill: none;
    stroke: #06182d;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}
.cp-site-footer__social small,
.cp-site-footer__social strong { display: block; }
.cp-site-footer__social small {
    margin-bottom: 3px;
    color: var(--cp-footer-gold-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.cp-site-footer__social strong {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}
@media (max-width: 760px) {
    .cp-site-footer {
        padding: 42px 20px;
    }
    .cp-site-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cp-site-footer__about { padding-left: 13px; }
    .cp-site-footer__about::before { left: 0; }
    .cp-site-footer__social {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 480px) {
    .cp-site-footer { padding: 36px 15px; }
    .cp-site-footer__about { padding-left: 12px; }
    .cp-site-footer__about > p { font-size: 15px !important; line-height: 1.65; }
    .cp-site-footer__email { max-width: 100%; overflow-wrap: anywhere; font-size: 14px; }
    .cp-site-footer__social { grid-template-columns: 1fr; }
    .cp-site-footer__social > a { min-height: 68px; }
}
@media (prefers-reduced-motion: reduce) {
    .cp-site-footer__social > a { transition: none; }
}
