/* ══════════════════════════════════════
        FOOTER — high readability redesign
        ══════════════════════════════════════ */
footer {
    background: var(--footer-bg);
    color: var(--footer-text)
}

/* Utility top row */
.footer-topbar {
    background: rgb(255 230 224);
    border-bottom: 1px solid var(--footer-border);
    padding: 12px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-topbar-links {
    display: flex;
    gap: 0;
    flex-wrap: wrap
}

.footer-topbar-links a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    padding: 4px 14px;
    border-right: 1px solid var(--footer-border);
    transition: color .2s;
    white-space: nowrap
}

.footer-topbar-links a:first-child {
    padding-left: 0
}

.footer-topbar-links a:last-child {
    border-right: none
}

.footer-topbar-links a:hover {
    color: var(--gold)
}

.footer-socials {
    display: flex;
    gap: 8px
}

.footer-social-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--footer-border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    transition: all .2s
}

.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 152, 58, .08)
}

/* Main grid */
.footer-main {
    padding: 64px 60px 22px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
    gap: 52px
}

/* Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    text-decoration: none;
    margin-bottom: 18px
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--footer-muted);
    margin-bottom: 26px;
    max-width: 270px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.contact-icon {
    width: 26px;
    height: 26px;
    background: var(--footer-surface);
    border: 1px solid var(--footer-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px
}

.contact-text {
    font-size: 13px;
    color: var(--footer-text);
    line-height: 1.55
}

.contact-text a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color .2s
}

.contact-text a:hover {
    color: var(--gold)
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.footer-badge {
    background: var(--footer-card);
    border: 1px solid var(--footer-border);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 600;
    color: var(--footer-text);
    letter-spacing: .04em
}

/* Columns */
.footer-col-title {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a40101;
    /* text-decoration: underline; */
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px
}

.footer-col ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
    border-radius: 4px;
    font-weight: 600;
}

.footer-col ul li a:hover {
    color: white
}

.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all .2s
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0)
}

/* Newsletter col */
.footer-newsletter p {
    font-size: 13px;
    color: var(--footer-muted);
    line-height: 1.7;
    margin-bottom: 14px
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--footer-border);
    margin-bottom: 28px
}

.newsletter-input {
    flex: 1;
    background: var(--footer-card);
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    color: white;
    outline: none;
    font-family: 'DM Sans', sans-serif
}

.newsletter-input::placeholder {
    color: var(--footer-muted)
}

.newsletter-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    letter-spacing: .04em
}

.newsletter-btn:hover {
    background: var(--gold-light)
}

/* Events mini-list */
.footer-events {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-event {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.event-date-box {
    background: var(--gold);
    color: var(--navy);
    border-radius: 7px;
    padding: 6px 10px;
    text-align: center;
    flex-shrink: 0;
    min-width: 42px
}

.event-date-box .eday {
    /* font-family: 'Playfair Display', serif; */
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    display: block
}

.event-date-box .emon {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: block
}

.event-info-title {
    font-size: 13px;
    color: white;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px
}

.event-info-sub {
    font-size: 11px;
    color: var(--footer-muted)
}

.event-date-box.muted {
    background: var(--footer-card);
    border: 1px solid var(--footer-border)
}

.event-date-box.muted .eday {
    color: var(--footer-text)
}

.event-date-box.muted .emon {
    color: var(--footer-muted)
}

/* Divider */
.footer-divider {
    height: 1px;
    background: var(--footer-border);
    margin: 0 60px
}