.footer-main {
    width: 100%;
    background: #1d1d1f;
    color: #f5f5f7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-rule {
    border: none;
    border-top: 1px solid rgba(216, 170, 43, 0.2);
    margin: 0;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-top-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.footer-top-heading h2 {
    font-family: "EB Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: #f5f5f7;
    margin: 0;
}

.footer-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f7;
    text-decoration: none;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.footer-arrow-btn:hover {
    border-color: #d8aa2b;
    color: #d8aa2b;
    background: rgba(216, 170, 43, 0.08);
}

.footer-arrow-btn--sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    margin-top: 12px;
}

.footer-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    /* border-bottom: 1px solid rgba(216, 170, 43, 0.15); */
}

.footer-info-col {
    display: flex;
    flex-direction: column;
}

.footer-info-label {
    font-family: Lato, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-info-col p {
    font-family: Lato, sans-serif;
    font-size: 1rem;
    color: #a1a1a6;
    margin: 0 0 6px 0;
    line-height: 1.6;
}

.footer-info-col a {
    color: #f5f5f7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info-col a:hover {
    color: #d8aa2b;
}

.footer-info-col strong {
    font-weight: 600;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.22s ease;
}

.social-link:hover {
    border-color: #d8aa2b;
    color: #d8aa2b;
    background: rgba(216, 170, 43, 0.08);
    transform: translateY(-2px);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 70px 0;
}

.footer-newsletter-left h3 {
    font-family: "EB Garamond", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: #f5f5f7;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.footer-newsletter-left p {
    font-family: Lato, sans-serif;
    font-size: 1rem;
    color: #a1a1a6;
    line-height: 1.7;
    margin: 0;
}

.footer-newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-email-input {
    width: 100%;
    padding: 16px 20px;
    background: #2a2a2c;
    border: 1px solid rgba(216, 170, 43, 0.2);
    border-radius: 8px;
    color: #f5f5f7;
    font-family: Lato, sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-email-input:focus {
    border-color: #d8aa2b;
}

.footer-subscribe-btn {
    width: 100%;
    padding: 16px 20px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 8px;
    font-family: Lato, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.footer-subscribe-btn:hover {
    background: #c49726;
    transform: translateY(-1px);
}

.footer-subscribe-btn:active {
    transform: translateY(0);
}

.footer-privacy-note {
    font-family: Lato, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.footer-copyright {
    font-family: Lato, sans-serif;
    font-size: 0.9rem;
    color: #86868b;
    margin: 0;
}

.footer-copyright a {
    color: #d8aa2b;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-family: Lato, sans-serif;
    font-size: 0.9rem;
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #d8aa2b;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(216, 170, 43, 0.35);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #c49726;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(216, 170, 43, 0.45);
}

@media (max-width: 1024px) {
    .footer-info-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 24px;
    }

    .footer-top {
        padding: 60px 0 50px;
    }

    .footer-top-heading {
        margin-bottom: 40px;
    }

    .footer-info-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-top-heading h2 {
        font-size: 1.7rem;
    }

    .footer-newsletter-left h3 {
        font-size: 1.7rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}
