/* ========================================================
   FOOTER
   ======================================================== */
footer {
    background-color: #0a4c56;
    color: #faf3E0;
    padding: 80px 10% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-section h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D9A441;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50%; height: 2px;
    background: linear-gradient(90deg, #D9A441, transparent);
}

.footer-section p,
.footer-section a {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 2;
    color: #faf3E0;
    text-decoration: none;
    font-weight: 300;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover { opacity: 1; color: #D9A441; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 243, 224, 0.2);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}