.footer-redesigned {
    min-height: 100vh;
    background: linear-gradient(135deg, #c2b582 0%, #8b7355 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.footer-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(139,115,85,0.3)" points="0,0 1000,300 1000,0"/><polygon fill="rgba(139,115,85,0.2)" points="0,400 1000,100 1000,400"/></svg>'); */
    background-size: cover;
    z-index: 1;
}

.footer-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-title {
    font-family: 'GCK', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    /* letter-spacing: 0.2em; */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-brand-subtitle {
    font-family: 'GCK', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.footer-address {
    font-family: 'GCK', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-link {
    font-family: 'GCK', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-nav-link:hover {
    color: var(--c1);
    /* border-bottom-color: rgba(255, 255, 255, 0.3); */
    transform: translateX(0.5px);
}


.footer-company-name {
    /* position: absolute; */
    /* bottom: 0; */
    font-family: 'GCK', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    /* text-transform: lowercase; */
    /* letter-spacing: -0.02em; */
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 1rem;
    max-width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.footer-bottom {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'GCK', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .footer-brand-section,
    .footer-social-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-social-link {
        border-right: none;
        border-bottom: 1px solid transparent;
        padding-right: 0;
        padding-bottom: 0.25rem;
    }
    
    .footer-social-link:hover {
        transform: translateY(-2px);
        border-bottom-color: white;
        border-right-color: transparent;
    }
    
    .footer-company-name {
        font-size: 0.5rem;
        bottom: 6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        bottom: 0.5rem;
    }
    
    .footer-legal-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-company-name {
        font-size: 0.5rem;
    }
    
    .footer-content-wrapper {
        padding: 2rem 1rem;
    }
}