/* MazinVisuals LLC agency shell: footer + cookie consent */

.agency-footer {
    background: #111512;
    color: #f7f7f2;
    padding: clamp(52px, 7vw, 88px) 24px 28px;
    border-top: 1px solid rgba(126, 153, 138, 0.45);
    font-family: 'Urbanist', 'Maven Pro', system-ui, sans-serif;
}

.agency-footer a {
    color: inherit;
    text-decoration: none;
}

.agency-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.agency-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.agency-footer-brand {
    display: inline-block;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 0.95;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.agency-footer-lead {
    max-width: 520px;
    color: rgba(247, 247, 242, 0.74);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 22px;
}

.agency-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agency-footer-badges span {
    border: 1px solid rgba(168, 191, 176, 0.28);
    background: rgba(126, 153, 138, 0.11);
    border-radius: 999px;
    color: #dfe9e2;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 11px;
}

.agency-footer-col h3 {
    color: #a8bfb0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 16px;
}

.agency-footer-col a,
.agency-footer-col span {
    display: block;
    color: rgba(247, 247, 242, 0.73);
    font-size: 0.96rem;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.agency-footer-col a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.agency-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.agency-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #f7f7f2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.agency-footer-social a:hover {
    background: #7e998a;
    transform: translateY(-2px);
}

.agency-footer-bottom {
    margin-top: clamp(36px, 6vw, 60px);
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(247, 247, 242, 0.56);
    font-size: 0.86rem;
}

.agency-footer-bottom a {
    color: rgba(247, 247, 242, 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2147483000;
    max-width: 980px;
    margin: 0 auto;
    background: rgba(17, 21, 18, 0.96);
    color: #f7f7f2;
    border: 1px solid rgba(168, 191, 176, 0.35);
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    padding: 18px;
    display: none;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    font-family: 'Urbanist', 'Maven Pro', system-ui, sans-serif;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    color: rgba(247, 247, 242, 0.78);
    line-height: 1.55;
    font-size: 0.93rem;
}

.cookie-banner strong {
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
    font-size: 0.98rem;
}

.cookie-banner a {
    color: #dfe9e2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 15px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    color: #f7f7f2;
    background: rgba(255, 255, 255, 0.07);
}

.cookie-btn.accept {
    border-color: #7e998a;
    background: #7e998a;
    color: #ffffff;
}

@media (max-width: 900px) {
    .agency-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .agency-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .agency-footer-top {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
