/* Footer — sized to match the rest of the page */
.footer-section {
    background: transparent;
    padding: 56px 0 0;
    width: 100%;
}

.footer-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.footer-block {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--black);
    padding: 48px 44px 32px;
    box-shadow: 0 2px 12px rgba(11, 11, 11, 0.04);
}

.footer-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-decor .gradient-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 18% -20%, rgba(201, 148, 50, 0.06), transparent 62%);
}

.footer-bg-decor .gradient-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 82% 120%, rgba(201, 148, 50, 0.04), transparent 62%);
}

.footer-bg-decor .dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11, 11, 11, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.35;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.4rem, 8.5vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 28px;
}

.footer-headline .gold {
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: 20px 32px;
    border-top: 1px solid var(--border-light);
    padding-top: 22px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.col-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.col-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: color 0.25s ease;
    letter-spacing: -0.01em;
}

.col-link:hover {
    color: var(--gold);
}

.col-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--gold);
    opacity: 0.7;
}

.col-link .break-all {
    word-break: break-word;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.25s ease, transform 0.2s ease;
    width: fit-content;
    letter-spacing: 0;
}

.btn-schedule:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-schedule svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}

.social-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.social-icons-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--black);
    border: 1px solid var(--border-light);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
    text-decoration: none;
}

.social-icons-row a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.social-icons-row a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.footer-copyright {
    margin-top: 22px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(11, 11, 11, 0.4);
    letter-spacing: 0.02em;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

@media (max-width: 900px) {
    .footer-section {
        padding-top: 40px;
    }

    .footer-block {
        padding: 36px 28px 26px;
    }

    .footer-headline {
        font-size: clamp(2.8rem, 9vw, 4rem);
        margin-bottom: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 18px;
    }
}

@media (max-width: 600px) {
    .footer-section {
        padding-top: 28px;
    }

    .footer-block {
        padding: 28px 18px 22px;
        border-radius: 12px;
    }

    .footer-headline {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .col-link {
        font-size: 0.95rem;
        justify-content: center;
    }

    .btn-schedule {
        width: 100%;
        justify-content: center;
    }

    .social-icons-row {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 0.7rem;
        padding-top: 14px;
        margin-top: 18px;
    }
}
