footer {
    background-color: var(--navy-deep);
    background-image: var(--pinstripe);
    color: var(--cream);
}

.footer-main {
    padding: 5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand img {
    height: 130px;
    width: auto;
    margin: -1.5rem 0 0 -0.9rem;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(251, 243, 226, 0.7);
    line-height: 1.75;
    max-width: 320px;
}

.footer-col-heading {
    font-family: var(--font-sign);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: rgba(251, 243, 226, 0.75);
    font-size: 0.92rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-col ul a svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-book-btn {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--red);
    border-radius: 3px;
    background: var(--red);
    color: var(--cream);
    font-family: var(--font-sign);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-book-btn:hover {
    background: transparent;
    border-color: var(--cream);
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 243, 226, 0.12);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(251, 243, 226, 0.55);
    letter-spacing: 0.03em;
}

.footer-bottom a {
    color: rgba(251, 243, 226, 0.75);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

@media (max-width: 800px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
