.ajt-site-footer {
    background: #1C1B19;
    color: #E5E1DA;
}

.ajt-footer-cta {
    padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 1.5rem);
    text-align: center;
    border-bottom: 1px solid rgba(250, 248, 245, 0.12);
}

.ajt-footer-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.ajt-footer-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8935F;
    margin: 0 0 1rem;
}

.ajt-footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 600;
    color: #FAF8F5;
    line-height: 1.2;
    margin: 0 0 1.1rem;
}

.ajt-footer-cta-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #B8B2A6;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.ajt-footer-main {
    padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 1.5rem);
}

.ajt-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
}

.ajt-footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #FAF8F5;
    margin: 0 0 1rem;
}

.ajt-footer-tagline {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #A8A196;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0;
}

.ajt-footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7A756B;
    margin: 0 0 1.1rem;
}

.ajt-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ajt-footer-links a,
.ajt-footer-links li {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #C9C3B8;
}

.ajt-footer-links a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

.ajt-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #E8935F;
    transition: width 0.25s ease;
}

.ajt-footer-links a:hover,
.ajt-footer-links a:focus-visible {
    color: #FAF8F5;
}

.ajt-footer-links a:hover::after,
.ajt-footer-links a:focus-visible::after {
    width: 100%;
}

.ajt-footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding: 1.5rem clamp(1.25rem, 4vw, 1.5rem);
    text-align: center;
}

.ajt-footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #6E695F;
    margin: 0;
}

.ajt-site-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ajt-site-footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .ajt-footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }

    .ajt-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .ajt-footer-grid {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .ajt-footer-cta-title {
        line-height: 1.25;
    }
}