.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 30px;

    border-radius: 999px;
    border: 1px solid transparent;

    font-size: 0.98rem;
    font-weight: 850;
    letter-spacing: 0.01em;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #c93b2d;
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.section-heading {
    width: min(100%, 920px);
    margin: 0 auto 64px;
    text-align: center;
    padding: 0 24px;
}

.section-kicker {
    margin-bottom: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 900;
}

.section-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.section-heading p {
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    line-height: 1.7;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    padding: 110px 0 32px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main,
.footer-legal {
    width: min(calc(100% - 64px), 1380px);
    margin-inline: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(48px, 6vw, 100px);
    padding-bottom: 80px;
}

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    display: block;
    width: 180px;
    height: auto;
}

.footer-brand p {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-column h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column a,
.footer-cookie-settings {
    color: rgba(255, 255, 255, 0.65);
    font: inherit;
    font-size: 0.94rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-column a:hover,
.footer-cookie-settings:hover {
    color: #fff;
}

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    font-style: normal;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #F4F1EC;
    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);

    background: var(--color-primary);

    box-shadow:
        0 12px 35px rgba(228,82,60,.35);
}

.footer-social img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.footer-legal {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) minmax(250px, 1fr);
    gap: 40px 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 20px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    line-height: 1.55;
}

.footer-company strong {
    width: 100%;
    color: rgba(255, 255, 255, 0.72);
}

.footer-policy {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: flex-start;
    gap: 12px 22px;
}

.footer-policy a,
.footer-cookie-settings {
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    text-decoration: none;
}

.footer-policy a:hover,
.footer-cookie-settings:hover {
    color: #fff;
}

.footer-copyright {
    grid-column: 1 / -1;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
}

@media (max-width: 1080px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-legal {
        grid-template-columns: 1fr;
    }

    .footer-policy {
        justify-content: flex-start;
    }
}

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

    .footer-main,
    .footer-legal {
        width: min(calc(100% - 48px), 1380px);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px 28px;
        padding-bottom: 60px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-company {
        flex-direction: column;
        gap: 5px;
    }

    .footer-policy {
        flex-direction: column;
        gap: 12px;
    }
}