.footer {
    border-top: 1px solid rgba(30, 30, 30, 0.08);
    padding: var(--space-4) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2);
    align-items: center;
}

.footer small {
    opacity: 0.75;
}

.footer-grid--legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-link,
.inline-legal-link {
    background: none;
    border: 0;
    padding: 0;
    color: #6f7750;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20, 20, 18, 0.64);
    backdrop-filter: blur(8px);
}

.legal-modal.is-open {
    display: flex;
}

.legal-modal-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: 88vh;
    background: #f6f7ed;
    border-radius: 28px;
    padding: 28px 28px 22px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.legal-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(30, 30, 30, 0.06);
    cursor: pointer;
}

.legal-modal-scroll {
    overflow-y: auto;
    max-height: calc(88vh - 40px);
    padding-right: 6px;
}

.legal-modal-scroll h2 {
    margin: 0 0 18px;
}

.legal-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(190, 160, 114, 0.18);
}

.legal-section h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.reservation-legal-copy {
    margin: 0 0 14px;
    line-height: 1.6;
    color: rgba(30, 30, 30, 0.78);
}

@media (max-width: 680px) {
    .legal-modal-dialog {
        border-radius: 20px;
        padding: 22px 18px 18px;
    }
}