/* =========================
   FOOTER
   ========================= */
.site-footer {
    width: 100%;
    background: var(--color-bg-dark);
    color: #f5f5f2;
}

.footer-inner {
    padding: 85px 70px 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 110px;
}

.footer-logo {
    color: #f5f5f2;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.footer-cta h2 {
    max-width: 760px;
    font-size: 1.9rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
    color: #f5f5f2;
}

.footer-cta h2 a {
    color: #f5f5f2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.footer-newsletter h3,
.footer-column h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #f5f5f2;
}

.footer-dot {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f5f5f2;
    display: inline-block;
}

.newsletter-form {
    display: flex;
    align-items: center;
    max-width: 620px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f5f5f2;
    font-size: 1.15rem;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(245, 245, 242, 0.85);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #f5f5f2;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.newsletter-form button:hover {
    transform: translateX(4px);
    opacity: 0.8;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #f5f5f2;
}

.footer-column ul li a {
    color: #f5f5f2;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 70px;
    font-size: 0.9rem;
    background: var(--color-white);
    color: var(--color-bg-dark);
}

.footer-bottom-center { text-align: center; }
.footer-bottom-right  { text-align: right; }

.footer-bottom-right a {
    color: var(--color-bg-dark);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-bottom-right a:hover {
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
   ========================= */

/* --- Tablet --- */
@media (max-width: 1200px) {
    .footer-inner { padding: 70px 40px 60px; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-bottom { padding: 16px 40px; }
}

/* --- Mobile landscape --- */
@media (max-width: 900px) {
    .footer-cta h2      { font-size: 1.5rem; }
    .footer-links-grid  { grid-template-columns: 1fr; gap: 34px; }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-center,
    .footer-bottom-right { text-align: center; }
}

/* --- Small mobile --- */
@media (max-width: 600px) {
    .footer-inner  { padding: 56px 24px 48px; }
    .footer-logo   { font-size: 2.2rem; }

    .footer-cta h2 {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    .newsletter-form input  { font-size: 1rem; }
    .newsletter-form button { font-size: 1.4rem; }

    .footer-column ul li { font-size: 1rem; }

    .footer-bottom {
        padding: 16px 24px;
        font-size: 0.8rem;
    }
}
