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

.footer {
    background: var(--forest-dark-solid);
    color: var(--dew-white);
    padding: clamp(4rem, 8vw, 5rem) 0;
}

.footer__shell {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: grid;
    gap: clamp(2.5rem, 6vw, 3.5rem);
}

.footer__shell>* {
    color: inherit;
}

.footer__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 2.5rem);
    grid-template-columns: 1fr;
}

.footer__brand {
    color: var(--dew-white);
    display: grid;
    gap: 1.25rem;
}

.footer__brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
}

/* Video player with play/pause button */
.footer__video-player {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.footer__brand-logo {
    width: 180px;
    height: 108px;
    border-radius: 12px;
    background: var(--dew-white-75);
    padding: 0.4rem;
    flex-shrink: 0;
}

.footer__video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.footer__video-player:hover .footer__video-btn,
.footer__video-btn:focus-visible {
    opacity: 1;
}

.footer__video-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.footer__video-btn sl-icon {
    font-size: 24px;
}

.footer__certifications {
    display: grid;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
}

.footer__certifications-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    align-items: center;
    justify-content: center;
}

.footer__certifications-list img {
    height: 80px;
    width: 80px;
    min-width: 48px;
    min-height: 48px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.footer__brand-mark sl-icon::part(base) {
    width: 22px;
    height: 22px;
}

.footer__column h3 {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dew-white);
}

.footer__column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.footer__column a {
    color: var(--dew-white);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer__column a:hover {
    color: var(--moss-green);
}

.footer__notice {
    text-align: center;
    font-size: 0.85rem;
    color: var(--dew-white);
    margin: 0;
}