.site-footer-container {
    background-color: #FDEDE0;
    width: 100%;
}
.site-footer {
    padding: 3.13vw 8.28vw 1.82vw;
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 3.13vw;
}

.footer-logo img {
    width: 8.64vw;
    height: auto;
    display: block;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 3.13vw;
}

.footer-nav a {
    font-family: 'Spartan', sans-serif;
    font-size: 0.625vw;
    font-weight: 700;
    color: #920026;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #920026;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1vw;
    justify-content: flex-end;
}

.footer-social a {
    display: block;
    width: 1.82vw;
    height: 1.82vw;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.footer-legal {
    display: flex;
    gap: 2.6vw;
}

.footer-legal a {
    font-family: 'Spartan', sans-serif;
    font-size: 0.625vw;
    font-weight: 700;
    color: #920026;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.6;
}

.contact-cta-section {
    padding: 5vw 16.5vw 10vw;
    background: linear-gradient(180deg,#fff  20%, #FDEDE0 100%);
}
.contact-cta-section.contact-cta-section--podcast {
    padding: 5vw 18vw 10vw;
}
.contact-cta-box {
    position: relative;
    background: linear-gradient(135deg, #FDEDE0 60%, #f5ddd0 100%);
    border-radius: 1.56vw;
    padding: 6.17vw 5.2vw;
    overflow: hidden;
    box-shadow: 0 10px 20px #E6D9CF;
    min-height: 20vw;
    display: flex;
    align-items: center;
}
.contact-cta-section.contact-cta-section--podcast .contact-cta-box {
    background: #3d0823;
    padding: 4vw 5.2vw 9vw;
}
.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.contact-cta-title {
    font-family: 'Spartan', sans-serif;
    font-size: 2.08vw;
    font-weight: 700;
    color: #070707;
    line-height: 1.3;
    margin-bottom: 2.08vw;
    letter-spacing: -0.02em;
}

.contact-cta-title--accent {
    font-family: 'ShantellSansBouncy';
    font-weight: 600;
    color: #920026;
    font-size: 2.3vw;
}

.contact-cta-link {
    position: relative;
    display: inline-block;
    font-family: 'Spartan', sans-serif;
    font-size: 0.9375vw;
    font-weight: 700;
    color: #920026;
    text-decoration: none;
    padding-bottom: 0vw;
}
.contact-cta-section.contact-cta-section--podcast .contact-cta-title,
.contact-cta-section.contact-cta-section--podcast .contact-cta-title--accent,
.contact-cta-section.contact-cta-section--podcast .contact-cta-link{
    color: #fff;
}
.contact-cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #920026;
    transform-origin: center;
    transform: scaleX(1);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.contact-cta-section.contact-cta-section--podcast .contact-cta-link::after{
    background-color: #fff;
}
.contact-cta-link:hover::after {
    transform: scaleX(0);
}

.contact-cta-link::before {
    content: '';
    position: absolute;
    top: -2vw;
    left: -0.6vw;
    width: 1.24vw;
    height: 1.65vw;
    background-image: url('../img/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-cta-link:hover::before {
    transform: translateY(0.10vw) rotate(-10deg);
}

.contact-cta-star {
    position: absolute;
    transform: rotate(39deg);
    right: -9vw;
    top: -11vw;
    width: 28vw;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}
.contact-cta-section--podcast {
    background: linear-gradient(180deg, #fff 20%, #FDEDE0 100%);
}

.contact-cta-box--dark {
    background: #3a0a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0.52vw 1.04vw #e6d9cf;
}

.contact-cta-title--light {
    color: #fff;
    margin-bottom: 2.08vw;
}

.contact-cta-title--accent-light {
    font-family: 'ShantellSansBouncy';
    font-weight: 600;
    color: #fff;
    font-size: 2.3vw;
}

.contact-cta-link--light {
    color: #fff;
}

.contact-cta-link--light::after {
    background-color: #fff;
}

.contact-cta-link--light::before {
    filter: brightness(0) invert(1);
}

.contact-cta-section.contact-cta-section--podcast  .contact-cta-content {
    max-width: 100%;
}
.contact-cta-podcast-logo {
    position: absolute;
    right: 2.8vw;
    bottom: 2.8vw;
    width: 25vw;
    height: auto;
    flex-shrink: 0;
}
.contact-cta-section.contact-cta-section--podcast .contact-cta-title {
    margin-bottom: 3.08vw;
}
@media only screen and (max-width: 767px) {
    .site-footer {
        padding: 12vw 7% 8vw;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 8vw;
        margin-bottom: 8vw;
        text-align: left;
    }

    .footer-logo {
        display: flex;
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 24vw;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 4vw;
    }

    .footer-nav a {
        font-size: 2.8vw;
        width: auto;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 5vw;
    }

    .footer-social a {
        width: 5vw;
        height: 5vw;
    }

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

    .footer-legal {
        gap: 5vw;
    }

    .footer-legal a {
        font-size: 2.8vw;
    }

    .contact-cta-section {
        padding: 0 5% 5vw;
    }
    .contact-cta-section.contact-cta-section--podcast {
        padding: 0 5% 0vw;
    }
    .contact-cta-box {
        padding: 10vw 8vw 10vw 6vw;
        border-radius: 3vw;
        box-shadow: 0 2vw 4vw #E6D9CF;
        min-height: unset;
    }

    .contact-cta-content {
        max-width: 100%;
    }

    .contact-cta-title, .contact-cta-section.contact-cta-section--podcast .contact-cta-title {
        font-size: 5.5vw;
        margin-bottom: 8vw;
                line-height: 1.2;
    }

    .contact-cta-title--accent, .contact-cta-section.contact-cta-section--podcast .contact-cta-title--accent-light {
        font-size: 7vw;
        line-height: 1.2;
    }

    .contact-cta-star {
        right: -13vw;
        top: unset;
        width: 38vw;
        bottom: -18vw;
        transform: rotate(290deg);
    }
    .contact-cta-podcast-logo {
            width: 45vw;
            bottom: 5vw;
        }
    .contact-cta-section.contact-cta-section--podcast .contact-cta-box {
        padding: 10vw 5.2vw 25vw;
    }
    .contact-cta-link {
        font-size: 3.1vw;
    }

    .contact-cta-link::before {
        width: 4vw;
        height: 5.5vw;
        top: -6vw;
        left: -2vw;
    }
}
