.footer {
    background: linear-gradient(135deg, #5C370C, #7A4A12);
    color: #FCEDE6;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 50px;
    display: flex;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #FFFDF5;
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #F5BA5E;
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* BRAND */
.brand .logo {
    font-size: 22px;
    font-weight: 700;
    color: #FFFDF5;
    margin-bottom: 16px;
}

.brand .logo span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F5BA5E;
    color: #5C370C;
    margin-right: 8px;
}

.brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
    color: #FCEDE6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #FCEDE6;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: #F5BA5E;
    padding-left: 6px;
}

/* SUBSCRIBE */
.subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe input {
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #FFFDF5;
    color: #5C370C;
}

.subscribe input::placeholder {
    color: #8A7A6A;
}

.subscribe button {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #F5BA5E;
    background: transparent;
    color: #F5BA5E;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.subscribe button:hover {
    background: #F5BA5E;
    color: #5C370C;
    transform: translateY(-2px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(245, 186, 94, 0.3);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #E6D5B8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 47%;
    }
}

@media (max-width: 576px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        flex: 1;
    }

    .brand p {
        max-width: 100%;
    }
}
