.footer-showcase {
    width: 100%;
    color: #fff;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.footer-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1rem;
    color: inherit;
    background-color: #a3a676;
    box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .footer-shell {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-shell {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.footer-shell__columns {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-shell__columns {
        padding: 0;
    }
}

.footer-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.footer-nav::-webkit-scrollbar,
.footer-socials::-webkit-scrollbar {
    display: none;
}

.footer-nav__column,
.footer-contact {
    min-width: 180px;
    flex: 1;
    border-radius: 24px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

@media (min-width: 640px) {
    .footer-nav__column,
    .footer-contact {
        min-width: 200px;
    }
}

.footer-contact {
    min-width: 220px;
}

@media (min-width: 640px) {
    .footer-contact {
        min-width: 240px;
    }
}

.footer-nav__title,
.footer-contact__title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-nav__list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.footer-nav__list li + li {
    margin-top: 0.5rem;
}

.footer-nav__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav__link:hover {
    color: #ffffff;
}

.footer-contact__blocks {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact__heading {
    font-weight: 600;
    color: #fff;
}

.footer-contact__lines {
    margin-top: 0.25rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.5rem 0;
}

.footer-newsletter__title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-newsletter__subtitle {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter__form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter__fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 32px;
}

@media (min-width: 640px) {
    .footer-newsletter__fields {
        flex-direction: row;
        align-items: center;
    }
}

.footer-input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.footer-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    border-radius: 999px;
    background-color: #ffffff;
    color: #7a7f55;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .footer-button {
        width: auto;
        justify-content: space-between;
    }
}

.footer-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #687042;
    color: #fff;
}

.footer-button__icon-svg {
    width: 16px;
    height: 16px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-about__title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .footer-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-meta__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-meta__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    text-transform: none;
    letter-spacing: 0.08em;
}

.footer-meta__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-meta__link:hover {
    color: #ffffff;
}

.footer-meta__separator {
    color: rgba(255, 255, 255, 0.6);
}

.footer-meta__socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #ffffff;
    letter-spacing: 0.3em;
}

@media (min-width: 768px) {
    .footer-meta__socials {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.footer-meta__socials-label {
    font-size: 0.68rem;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
}

.footer-socials__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-socials__item:hover {
    background-color: #ffffff;
    color: #7a7f55;
}

.footer-socials__icon {
    width: 16px;
    height: 16px;
}

.footer-socials__text {
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-about__text {
    color: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
