/* === Footer === */

.site-footer {
    background: #1E1A14;
    color: #F7F1E5;
    font-family: var(--font-sans);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Dekoracja górska */
.site-footer__mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.06;
    line-height: 0;
}

/* Wewnętrzny kontener — szerszy niż .container */
.site-footer__inner {
    max-width: 100%;
    width: 1480px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 72px);
    position: relative;
    z-index: 2;
}

/* Grid 4 kolumny */
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
}

/* ── Kolumna Marka ── */

.site-footer__logo-wrap {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer__logo {
    display: block;
    max-width: 100%;
    width: 180px;
    height: auto;
}

.site-footer__text {
    color: rgba(247, 241, 229, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 22px;
}

/* Kontakt (adres) */
.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-style: normal;
    margin-bottom: 24px;
}

.site-footer__contact-item {
    color: rgba(247, 241, 229, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__contact-item a {
    color: #F7F1E5;
    border-bottom: 1px solid rgba(247, 241, 229, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.site-footer__contact-item a:hover {
    border-color: rgba(247, 241, 229, 0.7);
}

/* Social icons */
.site-footer__socials {
    display: flex;
    gap: 10px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247, 241, 229, 0.25);
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.site-footer__social:hover {
    border-color: #FA4A01;
    background: rgba(250, 74, 1, 0.12);
}

.site-footer__social img {
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.site-footer__social:hover img {
    opacity: 1;
}

/* ── Kolumny Nav ── */

.site-footer__col-title {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: #FA4A01;
    margin: 0 0 18px;
    font-family: var(--font-sans);
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__list a {
    color: rgba(247, 241, 229, 0.78);
    font-size: 14px;
    transition: color 0.2s;
    display: inline-block;
}

.site-footer__list a:hover {
    color: #F7F1E5;
}

.site-footer__list a.site-footer__list-link--accent { color: #FA4A01; }
.site-footer__list a.site-footer__list-link--accent:hover { color: #FF7A45; }

/* ── Kolumna Godziny ── */

.site-footer__hours {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__hour-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
}

.site-footer__hour-day {
    color: rgba(247, 241, 229, 0.65);
}

.site-footer__hour-time {
    color: #F7F1E5;
    font-weight: 500;
    white-space: nowrap;
}

/* CTA button */
.site-footer__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 22px;
    background: #FA4A01;
    color: #FAF5EB;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: none;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 6px 18px -8px rgba(250, 74, 1, 0.5);
    cursor: pointer;
    margin-bottom: 14px;
}

.site-footer__cta-btn:hover {
    background: #D43E00;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(212, 62, 0, 0.55);
    color: #FAF5EB;
}

.site-footer__cta-btn svg {
    flex-shrink: 0;
}

/* Drugi przycisk — "Jak dojechać" (wariant ghost) */
.site-footer__map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 22px;
    background: transparent;
    color: #F7F1E5;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: 1px solid rgba(247, 241, 229, 0.28);
    text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    margin-bottom: 14px;
}

.site-footer__map-btn:hover {
    border-color: #FA4A01;
    background: rgba(250, 74, 1, 0.10);
    color: #F7F1E5;
}

.site-footer__map-btn svg {
    flex-shrink: 0;
    color: #FA4A01;
}

/* Dodatkowy tekst */
.site-footer__extra {
    font-size: 11.5px;
    color: rgba(247, 241, 229, 0.45);
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

/* ── Adnotacja o monitoringu (stała) ── */

.site-footer__monitoring {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    width: 100%;
    margin: 0;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(247, 241, 229, 0.1);
    color: rgba(247, 241, 229, 0.45);
    font-size: 12px;
    line-height: 1.6;
}

.site-footer__monitoring svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FA4A01;
    opacity: 0.85;
}

/* ── Pasek dolny ── */

.site-footer__bottom {
    border-top: 1px solid rgba(247, 241, 229, 0.1);
    padding: 22px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(247, 241, 229, 0.5);
    flex-wrap: wrap;
}

.site-footer__copy {
    line-height: 1.4;
}

.site-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer__bottom-links a {
    color: rgba(247, 241, 229, 0.5);
    font-size: 12.5px;
    border-bottom: 1px solid rgba(247, 241, 229, 0.18);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.site-footer__bottom-links a:hover {
    color: #F7F1E5;
    border-color: rgba(247, 241, 229, 0.5);
}

/* ── Responsywność ── */

@media (max-width: 1080px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 56px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    .site-footer__col--hours {
        grid-column: 1 / -1;
    }

    /* Wyśrodkowanie wszystkich elementów w stopce na mobile/tablecie */
    .site-footer__col { text-align: center; }
    .site-footer__logo-wrap { margin-left: auto; margin-right: auto; }
    .site-footer__logo { margin-left: auto; margin-right: auto; }
    .site-footer__contact { align-items: center; }
    .site-footer__socials { justify-content: center; }
    .site-footer__list { align-items: center; }
    .site-footer__hours {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .site-footer__extra { justify-content: center; }
    .site-footer__monitoring { justify-content: center; text-align: center; }

    .site-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }

    .site-footer__bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__col--brand,
    .site-footer__col--hours {
        grid-column: auto;
    }
}
