:root {
    --footer-bg: #080808;
    --footer-panel: #101010;
    --footer-text: #f4f1eb;
    --footer-muted: #92908b;
    --footer-accent: #c8a96b;
    --footer-border: rgba(255, 255, 255, 0.09);
    --footer-container: 1440px;
}

.site-footer {
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    overflow: hidden;
}

.footer-cta {
    position: relative;
    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
}

.footer-cta-inner {
    width: min(100% - 56px, var(--footer-container));
    min-height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-cta-content {
    max-width: 760px;
}

.footer-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--footer-accent);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.footer-cta p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--footer-muted);
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.footer-cta-button {
    min-width: 190px;
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-shrink: 0;
    color: #0a0a0a;
    background: var(--footer-accent);
    border: 1px solid var(--footer-accent);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.footer-cta-button:hover {
    color: var(--footer-accent);
    background: transparent;
    transform: translateY(-3px);
}

.footer-cta-button span:last-child {
    font-size: 18px;
}

.footer-main {
    padding: 78px 0 70px;
}

.footer-container {
    width: min(100% - 56px, var(--footer-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.3fr;
    gap: 55px;
}

.footer-brand-column {
    max-width: 350px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--footer-text);
    text-decoration: none;
}

.footer-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--footer-accent);
    color: var(--footer-accent);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand-name strong {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-brand-name small {
    margin-top: 5px;
    color: var(--footer-accent);
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;
}

.footer-description {
    margin: 25px 0 28px;
    color: var(--footer-muted);
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--footer-muted);
    border: 1px solid var(--footer-border);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
    color: var(--footer-accent);
    border-color: var(--footer-accent);
    background: rgba(200, 169, 107, 0.05);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin: 0 0 24px;
    color: var(--footer-text);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    margin-bottom: 13px;
    color: var(--footer-muted);
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--footer-accent);
}

.footer-contact-column a:first-of-type {
    color: var(--footer-text);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-inner {
    width: min(100% - 56px, var(--footer-container));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #6f6d68;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--footer-accent);
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1.2fr;
        gap: 45px;
    }

    .footer-contact-column {
        grid-column: 2 / -1;
    }
}

@media (max-width: 800px) {
    .footer-cta-inner {
        width: calc(100% - 40px);
        min-height: auto;
        padding: 75px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .footer-cta h2 {
        font-size: clamp(36px, 9vw, 52px);
    }

    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
        max-width: 500px;
    }

    .footer-contact-column {
        grid-column: auto;
    }

    .footer-main {
        padding: 65px 0;
    }

    .footer-bottom-inner {
        width: calc(100% - 40px);
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}

@media (max-width: 520px) {
    .footer-cta-inner {
        width: calc(100% - 32px);
        padding: 60px 0;
    }

    .footer-eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .footer-cta h2 {
        font-size: 37px;
        letter-spacing: -0.8px;
    }

    .footer-cta p {
        font-size: 13px;
    }

    .footer-cta-button {
        width: 100%;
    }

    .footer-container {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-column,
    .footer-contact-column {
        grid-column: auto;
    }

    .footer-main {
        padding: 55px 0;
    }

    .footer-bottom-inner {
        width: calc(100% - 32px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}