 

body {
     --font-display: 'Chronicle Display', 'RecklessNeue', Georgia, serif;
    --font-body:    'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, sans-serif;
    font-family: var(--font-body)
 } 

/* ========== */

/* Footer Container */
.akar-footer {
    background-color: #ffffff;
    color: #ffffff;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Footer Content Wrapper */
.akar-footer-content {
    padding:16px 49px 18px;
    max-width: 100%;
}

.akar-footer-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 50px;
    margin: 0 auto;
}

/* ========================================
    BRAND COLUMN (Left)
    ======================================== */
.akar-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.akar-footer-title {
    font-family: 'RecklessNeue', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    letter-spacing: -0.02em;
}

.akar-footer-title sup {
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 2px;
}


.footer-logo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ========================================
    OFFICE COLUMNS (Middle)
    ======================================== */
.akar-footer-office {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: max-content;
}

.akar-footer-office-title {
    font-family: 'RecklessNeue', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

#footer .akar-footer-office-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#footer .akar-footer-office-details .akar-footer-link {
    font-family: 'RecklessNeue', serif;
    font-size: 1rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    line-height: 1.6;
}



#footer .akar-footer-office-details .akar-footer-link:hover {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    opacity: 0.9;
}

.akar-footer-address {
    font-family: 'RecklessNeue', serif;
    font-size:1rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    line-height: 1.6;
    margin: 8px 0;
    opacity: 0.9;
}

#footer .akar-footer-office-details .akar-footer-map-link {
    font-family: 'RecklessNeue', serif;
    font-size: 1rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    text-decoration: none;
    letter-spacing: 0.08em;
    gap: 8px;
    transition: all 0.3s ease;
}

#footer .akar-footer-office-details .akar-footer-map-link:hover {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    gap: 12px;
}

.akar-footer-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

#footer .akar-footer-office-details .akar-footer-map-link:hover .akar-footer-arrow {
    transform: translateX(4px);
}

/* ========================================
    CTA COLUMN (Right)
    ======================================== */
.akar-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: end;
    justify-content: flex-end;
}

    
/* Social Media Section */
.akar-footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 7px;
}

.akar-footer-social-links {
    display: flex;
    gap: 14px;
}

.akar-footer-social-link {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    width:  max-content;
    height: 32px;
}

.akar-footer-social-link:hover {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    transform: translateY(-3px);
}

.akar-footer-social-link svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* ========================================
    RESPONSIVE - TABLET (max-width: 1199px)
    ======================================== */
@media (max-width: 1199px) {
    .akar-footer-container {
        grid-template-columns:1fr 1fr;
        gap: 40px;
    }

    .akar-footer-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
        margin-top: 0px;
        margin-bottom: 70px;
        padding-top: 30px;
        text-align: start;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .akar-footer-title {
        font-size: 2rem;
    }
}

/* ========================================
    RESPONSIVE - TABLET SMALL (max-width: 991px)
    ======================================== */
@media (max-width: 991px) {
    .akar-footer-content {
        padding:16px 30px 18px;
    }

    .akar-footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .akar-footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .akar-footer-cta {
        grid-column: 1 / -1;
        flex-direction: column;
        gap: 30px;
    }



    .akar-footer-cta {
        margin-top: 0px;
        margin-bottom: 70px;
    }

        /* Social Media Section */
    .akar-footer-social { 
        align-items:center;
        margin-top: 20px;
    }

    .akar-footer-office{
        text-align: center;
    }

    .akar-footer-brand {
        justify-content: center;
        text-align: center;
    }


}

/* ========================================
    RESPONSIVE - MOBILE (max-width: 767px)
    ======================================== */
@media (max-width: 767px) {
    
    .akar-footer-content {
        padding: 16px 25px 18px;
    }

    .akar-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .akar-footer-brand {
        grid-column: 1;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .akar-footer-logo {
        font-size: 55%;
        }

    .akar-footer-office {
        gap: 12px;
    }

    .akar-footer-office-title {
        font-size: 0.813rem;
        margin-bottom: 8px;
    }

    #footer .akar-footer-office-details .akar-footer-link,
    .akar-footer-address {
        font-size: 0.875rem;
    }

    .akar-footer-map-link,
   #footer .akar-footer-office-details  .akar-footer-newsletter-link {
        font-size: 0.75rem;
    }

    .akar-footer-cta {
        gap: 25px;
        padding-top: 0px;
    }

    .akar-footer-newsletter-text {
        font-size: 0.813rem;
    }

    .akar-footer-social-title {
        font-size: 0.813rem;
    }

    .akar-footer-social-links {
        gap: 14px;
    }

    .akar-footer-social-link {
        width: 35px;
        height: 35px;
    }

    .akar-footer-social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
    RESPONSIVE - MOBILE SMALL (max-width: 479px)
    ======================================== */
@media (max-width: 479px) {
    .akar-footer-content {
        padding:16px 20px 18px;
    }

    .akar-footer-container {
        gap: 25px;
    } 

    .akar-footer-office-title {
        font-size: 0.75rem;
    }

    #footer .akar-footer-office-details .akar-footer-link,
    .akar-footer-address {
        font-size: 0.813rem;
    }

     #footer .akar-footer-office-details  .akar-footer-map-link,
     #footer .akar-footer-office-details  .akar-footer-newsletter-link {
        font-size: 0.688rem;
    }

    .akar-footer-newsletter-text,
    .akar-footer-social-title {
        font-size: 0.75rem;
    }

    .akar-footer-social-links {
        gap: 12px;
    }

    .akar-footer-social-link {
        width: 26px;
        height: 26px;
    }

    .akar-footer-social-link svg {
        width: 25px;
        height:25px;
    }
}

/* ========================================
    RESPONSIVE - DESKTOP LARGE (min-width: 1440px)
    ======================================== */
@media (min-width: 1440px) {
    .akar-footer-content {
        padding:16px 49px 18px;
    }

    .akar-footer-container {
        gap: 60px;
    } 
 
    .akar-footer-social-links {
        gap: 10px;
    }

    .akar-footer-social-link {
        width: 35px;
        height: 35px;
    }

    .akar-footer-social-link svg {
        width: 26px;
        height: 26px;
    }
}