/* Footer shared styles (LP + pages) */
:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-300: #d6d3d1;
    --stone-600: #57534e;
    --stone-900: #1c1917;
}

.footer {
    width: 100%;
    background: white;
    padding: 80px 20px 60px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 500;
    color: var(--stone-100);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.footer-stamps {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.footer-stamp {
    position: absolute;
    width: 140px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.footer-stamp-left {
    left: 28%;
    top: 38%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.footer-stamp-right {
    right: 28%;
    top: 70%;
    transform: translate(50%, -50%) rotate(15deg);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-column h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-column p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--stone-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--stone-600);
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--stone-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--stone-900);
}

/* Footer Cities Section */
.footer-cities {
    padding-top: 40px;
    text-align: center;
}

.cities-list {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 2;
    color: var(--stone-600);
}

.cities-list a {
    color: var(--stone-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cities-list a:hover {
    color: var(--stone-900);
}

.city-separator {
    color: var(--stone-300);
    margin: 0 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 40px;
    }

    .footer-brand {
        margin-bottom: 60px;
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120px;
    }

    .footer-brand-text {
        font-size: clamp(3rem, 10vw, 5rem);
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-stamp {
        width: 100px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-brand-text {
        font-size: clamp(2.5rem, 9vw, 4.5rem);
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-stamp {
        width: 80px;
    }
}
