/* FOOTER */
.footer {
    background: radial-gradient(circle at top, rgba(255,255,255,0.06), rgba(0,0,0,0.96));
    padding: 60px 20px 35px;
    margin-top: 60px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-line {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(192,192,192,0.2),
        rgba(212,175,55,0.9),
        rgba(192,192,192,0.2)
    );
}

.footer-logo-area {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    margin-top: 10px;
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.9));
}

.footer-claim {
    text-align: center;
    margin-bottom: 40px;
}

.footer-claim span {
    font-family: 'Playfair Display SC', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E8E4D9;
    opacity: 0.9;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 260px;
    min-width: 240px;
}

.footer-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.05rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--royal-gold);
    margin-bottom: 16px;
}

.footer-menu,
.footer-legal {
    list-style: none;
}

.footer-menu li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-menu a,
.footer-legal a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    color: #D5D5D5;
    opacity: 0.9;
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s ease;
}

.footer-menu a::after,
.footer-legal a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--royal-gold);
    transition: 0.3s ease;
}

.footer-menu a:hover,
.footer-legal a:hover {
    color: var(--light-gold);
}
.footer-menu a:hover::after,
.footer-legal a:hover::after {
    width: 100%;
}

.footer-address {
    font-style: normal;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #E0E0E0;
    margin-bottom: 18px;
}

.footer-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A7A7A7;
    margin-bottom: 4px;
}

.footer-contact {
    margin-bottom: 18px;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--royal-gold);
    transition: 0.3s ease;
}
.footer-link:hover {
    color: var(--light-gold);
    text-shadow: 0 0 6px rgba(212,175,55,0.5);
}

/* FOOTER BOTTOM */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #CFCFCF;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom span {
    opacity: 0.85;
    transition: 0.3s;
}
.footer-bottom span:hover {
    color: var(--royal-gold);
    opacity: 1;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-logo-img {
        max-width: 180px;
    }
    .footer-claim span {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}
