
/*
 * Tucker SEO navigation/footer
 * Hide Kadence's existing sparse footer only.
 */
#colophon.site-footer,
.site-footer {
    display: none !important;
}

.tseo-new-footer,
.tseo-new-footer * {
    box-sizing: border-box;
}

.tseo-new-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    margin: 0;
    background: #0c0c0d;
    color: #fff;
    position: relative;
    z-index: 10;
    font-family: inherit;
}

.tseo-new-footer__wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.tseo-new-footer__top {
    padding: 68px 0 54px;
    background:
        radial-gradient(circle at 10% 0%, rgba(212,175,55,.10), transparent 30%),
        #0c0c0d;
    border-top: 1px solid #252525;
}

.tseo-new-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, 1fr);
    gap: 34px;
}

.tseo-new-footer__brand {
    padding-right: 22px;
}

.tseo-new-footer__wordmark {
    color: #fff;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.025em;
}

.tseo-new-footer__wordmark span {
    color: #d4af37;
}

.tseo-new-footer__rule {
    width: 76px;
    height: 3px;
    margin: 18px 0 20px;
    background: #d4af37;
    border-radius: 99px;
}

.tseo-new-footer__brand p {
    max-width: 330px;
    margin: 0 0 24px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.72;
}

.tseo-new-footer__quote {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0b0b0b !important;
    background: #d4af37;
    padding: 13px 17px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

.tseo-new-footer__quote:hover {
    background: #e1c151;
    color: #000 !important;
}

.tseo-new-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tseo-new-footer__col h2 {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.tseo-new-footer__col a {
    color: #c9c9c9 !important;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none !important;
    transition: color .15s ease, transform .15s ease;
}

.tseo-new-footer__col a:hover {
    color: #fff !important;
    transform: translateX(2px);
}

.tseo-new-footer__bottom {
    background: #070708;
    border-top: 1px solid #242424;
    padding: 21px 0;
}

.tseo-new-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px 26px;
    flex-wrap: wrap;
    color: #858585;
    font-size: 12px;
}

/* Existing Kadence menu stays separate; only make submenus feel consistent. */
.primary-menu-container .sub-menu,
.main-navigation .sub-menu,
.header-navigation .sub-menu {
    padding: 9px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.16) !important;
}

.primary-menu-container .sub-menu a,
.main-navigation .sub-menu a,
.header-navigation .sub-menu a {
    border-radius: 8px !important;
}

@media (max-width: 1060px) {
    .tseo-new-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tseo-new-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .tseo-new-footer__top {
        padding: 52px 0 42px;
    }
    .tseo-new-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 22px;
    }
}

@media (max-width: 480px) {
    .tseo-new-footer__wrap {
        width: min(100% - 28px, 1180px);
    }
    .tseo-new-footer__grid {
        grid-template-columns: 1fr;
    }
    .tseo-new-footer__brand {
        grid-column: auto;
    }
    .tseo-new-footer__bottom-inner {
        flex-direction: column;
    }
}
