/* ==========================================================================
   Global footer
   ========================================================================== */

.site-footer {
    color: var(--cream);
    background: linear-gradient(180deg, #0a0908, #050403);
    border-top: 1px solid rgba(201, 154, 61, 0.28);
}

.footer-subscribe {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    margin-bottom: 34px;
    background: linear-gradient(160deg, #14110c, #060504);
    border: 1px solid rgba(201, 154, 61, 0.4);
    border-radius: 18px;
}

.footer-subscribe__title {
    margin: 0 0 4px;
    color: var(--gold-light);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
}

.footer-subscribe__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    max-width: 40ch;
}

.footer-subscribe__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 1 620px;
}

.footer-subscribe__form input {
    flex: 1 1 180px;
    min-width: 0;
    padding: 12px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 154, 61, 0.4);
    border-radius: 999px;
    font-size: 0.88rem;
}

.footer-subscribe__form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__form input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-subscribe__form button {
    flex: 0 0 auto;
    padding: 12px 26px;
    color: var(--black);
    background: var(--gold-light);
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}

.footer-subscribe__form button:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-subscribe__form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-subscribe__message {
    margin: -20px 0 30px;
    padding: 12px 18px;
    color: var(--gold-light);
    background: rgba(201, 154, 61, 0.1);
    border: 1px solid rgba(201, 154, 61, 0.35);
    border-radius: 12px;
    font-size: 0.85rem;
    text-align: center;
}

.footer-subscribe__message.is-error {
    color: #f4b4b4;
    background: rgba(179, 65, 65, 0.12);
    border-color: rgba(179, 65, 65, 0.4);
}

.footer-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(32px, 5vw, 80px);
}

.footer-brand-col p {
    color: rgba(255, 247, 232, 0.82);
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
    height: 70px;
    width: auto;
}

.footer-brand-col .footer-brand-tagline {
    margin-top: 4px;
    color: var(--gold-light);
    font-weight: 700;
}

.footer-col-title {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links-columns {
    display: flex;
    gap: 24px;
}

.footer-links-box {
    flex: 1;
}

.footer-links-list,
.footer-event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-list a,
.footer-event-list a {
    color: rgba(255, 247, 232, 0.82);
    text-decoration: none;
    transition: color 200ms ease, padding-left 200ms ease;
}

.footer-links-list a:hover,
.footer-event-list a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-event-list li {
    color: rgba(255, 247, 232, 0.82);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 247, 232, 0.85);
}

.footer-contact-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    opacity: 1;
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 247, 232, 0.65);
}

.footer-bottom-bar a {
    color: rgba(255, 247, 232, 0.7);
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: var(--gold-light);
}
