.elementor-20339 .elementor-element.elementor-element-f6999d8{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-69d4262 *//* =====================================
   AGAINST THE GRAIN — FOOTER
===================================== */

.atg-footer {
    --atg-black: #050505;
    --atg-black-soft: #0d0d0d;
    --atg-cream: #f4efe6;
    --atg-gold: #b48a43;
    --atg-muted: #aaa49b;
    --atg-neon-blue: #00e5ff;
    --atg-neon-purple: #8a2be2;
    --atg-neon-pink: #ff2d95;
    --atg-neon-orange: #ffb800;

    position: relative;
    overflow: hidden;

    width: 100%;

    color: var(--atg-cream);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(180, 138, 67, 0.08),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #070707 0%,
            var(--atg-black) 100%
        );

    border-top: 1px solid rgba(180, 138, 67, 0.45);
}


/* SUBTLE COLOR ACCENT */

.atg-footer__glow {
    position: absolute;
    top: -150px;
    left: 50%;

    width: 620px;
    height: 280px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(138, 43, 226, 0.12),
            rgba(255, 45, 149, 0.06),
            transparent 70%
        );

    filter: blur(48px);

    pointer-events: none;
}


/* MAIN FOOTER GRID */

.atg-footer__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 72px 40px 62px;

    display: grid;
    grid-template-columns:
        minmax(300px, 1.7fr)
        minmax(120px, 0.7fr)
        minmax(120px, 0.7fr)
        minmax(190px, 1fr)
        minmax(220px, 1.15fr);

    align-items: start;

    gap: clamp(34px, 4vw, 68px);
}


/* BRAND AREA */

.atg-footer__brand {
    max-width: 440px;
}

.atg-footer__logo {
    display: inline-block;

    margin-bottom: 24px;

    text-decoration: none;
}

.atg-footer__logo img {
    display: block;

    width: 100%;
    max-width: 390px;
    height: auto;

    object-fit: contain;
}

.atg-footer__description {
    max-width: 410px;

    margin: 0 0 28px;

    color: var(--atg-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;

    letter-spacing: 0.015em;
}


/* FOOTER CTA */

.atg-footer__button {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 15px 24px;

    color: var(--atg-cream);
    background: transparent;

    border: 1px solid var(--atg-gold);

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.atg-footer__button::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            var(--atg-neon-blue),
            var(--atg-neon-purple),
            var(--atg-neon-pink),
            var(--atg-neon-orange),
            var(--atg-neon-blue)
        );

    background-size: 300% 100%;

    opacity: 0;

    transition: opacity 0.3s ease;
}

.atg-footer__button:hover,
.atg-footer__button:focus-visible {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.18),
        0 0 18px rgba(255, 45, 149, 0.12);
}

.atg-footer__button:hover::before,
.atg-footer__button:focus-visible::before {
    opacity: 1;

    animation:
        atgFooterButtonGradient
        2.5s
        linear
        infinite;
}

@keyframes atgFooterButtonGradient {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }

}


/* FOOTER COLUMN HEADINGS */

.atg-footer__column h3 {
    position: relative;

    margin: 0 0 24px;
    padding-bottom: 14px;

    color: var(--atg-cream);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.atg-footer__column h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 34px;
    height: 1px;

    background: var(--atg-gold);
}


/* STANDARD FOOTER MENUS */

.atg-footer__column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.atg-footer__column li {
    margin: 0 0 13px;
}

.atg-footer__column a {
    color: var(--atg-muted);

    text-decoration: none;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    letter-spacing: 0.035em;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.atg-footer__column ul a {
    display: inline-block;
}

.atg-footer__column a:hover,
.atg-footer__column a:focus-visible {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--atg-neon-blue),
            var(--atg-neon-purple),
            var(--atg-neon-pink),
            var(--atg-neon-orange),
            var(--atg-neon-blue)
        );

    background-size: 300% 100%;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        atgFooterTextGradient
        2.5s
        linear
        infinite;
}

.atg-footer__column ul a:hover,
.atg-footer__column ul a:focus-visible {
    transform: translateX(3px);
}

@keyframes atgFooterTextGradient {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 300% 50%;
    }

}


/* CONTACT COLUMN */

.atg-footer__address {
    margin: 0 0 15px;

    color: var(--atg-muted);

    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.atg-footer__phone {
    display: block;

    width: fit-content;

    margin-bottom: 15px;

    color: var(--atg-cream) !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;

    letter-spacing: 0.02em !important;
}

.atg-footer__phone:hover,
.atg-footer__phone:focus-visible {
    color: var(--atg-gold) !important;

    background: none !important;

    -webkit-text-fill-color: currentColor !important;

    animation: none !important;
}

.atg-footer__directions {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--atg-muted);

    text-transform: uppercase;

    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    letter-spacing: 0.13em !important;
}

.atg-footer__directions span {
    color: var(--atg-gold);

    font-size: 13px;

    transition: transform 0.3s ease;
}

.atg-footer__directions:hover span,
.atg-footer__directions:focus-visible span {
    transform: translate(2px, -2px);
}


/* HOURS COLUMN */

.atg-footer__hours dl {
    margin: 0;
}

.atg-footer__hours dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 7px 0;

    border-bottom:
        1px solid rgba(180, 138, 67, 0.12);
}

.atg-footer__hours dl > div:first-child {
    padding-top: 0;
}

.atg-footer__hours dl > div:last-child {
    border-bottom: 0;
}

.atg-footer__hours dt,
.atg-footer__hours dd {
    margin: 0;

    font-size: 12px;
    line-height: 1.45;
}

.atg-footer__hours dt {
    color: var(--atg-muted);
}

.atg-footer__hours dd {
    color: var(--atg-cream);

    font-weight: 500;
    text-align: right;

    white-space: nowrap;
}


/* BOTTOM LEGAL BAR */

.atg-footer__bottom {
    position: relative;
    z-index: 2;

    border-top:
        1px solid rgba(180, 138, 67, 0.22);

    background: rgba(0, 0, 0, 0.3);
}

.atg-footer__bottom-inner {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 22px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.atg-footer__copyright {
    margin: 0;

    color: #817d76;

    font-size: 12px;
    line-height: 1.5;

    letter-spacing: 0.05em;
}

.atg-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 24px;
}

.atg-footer__legal a {
    color: #817d76;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.11em;

    transition: color 0.25s ease;
}

.atg-footer__legal a:hover,
.atg-footer__legal a:focus-visible {
    color: var(--atg-gold);
}


/* ACCESSIBILITY */

.atg-footer a:focus-visible {
    outline: 2px solid var(--atg-neon-blue);
    outline-offset: 5px;
}

/* =====================================
   RESPONSIVE FOOTER
   Desktop above remains unchanged.
===================================== */


/* SMALL DESKTOP */

@media (max-width: 1250px) {

    .atg-footer__container {
        grid-template-columns:
            minmax(280px, 1.55fr)
            minmax(120px, 0.7fr)
            minmax(120px, 0.7fr)
            minmax(190px, 1fr);

        gap: 44px 38px;

        padding-left: 32px;
        padding-right: 32px;
    }

    .atg-footer__hours {
        grid-column: 2 / 5;

        width: 100%;
        max-width: 680px;
    }

    .atg-footer__bottom-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

}


/* TABLET */

@media (max-width: 900px) {

    .atg-footer__container {
        grid-template-columns:
            minmax(250px, 1.35fr)
            minmax(135px, 0.65fr)
            minmax(135px, 0.65fr);

        gap: 44px 34px;

        padding:
            62px 28px 52px;
    }

    .atg-footer__brand {
        grid-column: 1 / 2;

        max-width: 100%;
    }

    .atg-footer__contact {
        grid-column: 1 / 2;
    }

    .atg-footer__hours {
        grid-column: 2 / 4;

        width: 100%;
        max-width: none;
    }

    .atg-footer__bottom-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .atg-footer {
        background:
            radial-gradient(
                circle at 50% 0%,
                rgba(180, 138, 67, 0.09),
                transparent 28%
            ),
            linear-gradient(
                180deg,
                #070707 0%,
                #050505 100%
            );
    }

    .atg-footer__glow {
        top: -110px;

        width: 360px;
        height: 220px;

        filter: blur(38px);
    }

    .atg-footer__container {
        display: grid;
        grid-template-columns: 1fr;

        gap: 0;

        padding:
            48px 18px 38px;
    }

    /* BRAND FIRST */

    .atg-footer__brand {
        grid-column: auto;

        max-width: none;

        padding-bottom: 34px;

        border-bottom:
            1px solid rgba(180, 138, 67, 0.22);
    }

    .atg-footer__logo {
        display: block;

        width: 100%;

        margin-bottom: 22px;
    }

    .atg-footer__logo img {
        width: 100%;
        max-width: 310px;

        margin: 0 auto;
    }

    .atg-footer__description {
        max-width: 520px;

        margin:
            0 auto 24px;

        text-align: center;

        font-size: 14px;
        line-height: 1.7;
    }

    .atg-footer__button {
        width: 100%;
        min-height: 54px;
    }

    /* ALL CONTENT SECTIONS BECOME CLEAN STACKED BLOCKS */

    .atg-footer__column {
        grid-column: auto;

        width: 100%;

        padding:
            28px 0;

        border-bottom:
            1px solid rgba(180, 138, 67, 0.18);
    }

    .atg-footer__column:last-child {
        border-bottom: 0;
    }

    .atg-footer__column h3 {
        margin-bottom: 20px;

        font-size: 12px;
    }

    /* EXPLORE + SERVICES SIDE BY SIDE */

    .atg-footer__column:nth-of-type(2),
    .atg-footer__column:nth-of-type(3) {
        display: inline-block;

        width: 50%;

        vertical-align: top;
    }

    .atg-footer__column:nth-of-type(2) {
        padding-right: 14px;
    }

    .atg-footer__column:nth-of-type(3) {
        padding-left: 14px;
    }

    .atg-footer__column li {
        margin-bottom: 12px;
    }

    .atg-footer__column a {
        font-size: 14px;
    }

    /* CONTACT */

    .atg-footer__contact {
        padding-top: 30px;
    }

    .atg-footer__address {
        margin-bottom: 14px;

        font-size: 14px;
        line-height: 1.65;
    }

    .atg-footer__phone {
        margin-bottom: 14px;

        font-size: 18px !important;
    }

    .atg-footer__directions {
        min-height: 44px;

        align-items: center;

        font-size: 10px !important;
    }

    /* HOURS */

    .atg-footer__hours {
        grid-column: auto;

        max-width: none;
    }

    .atg-footer__hours dl {
        width: 100%;
        max-width: none;
    }

    .atg-footer__hours dl > div {
        padding: 10px 0;
    }

    .atg-footer__hours dt,
    .atg-footer__hours dd {
        font-size: 13px;
    }

  /* ==========================
   FOOTER BOTTOM BAR
========================== */

.atg-footer__bottom{

    border-top:1px solid rgba(180,138,67,.18);

    background:#040404;

}

.atg-footer__bottom-inner{

    max-width:1450px;

    margin:0 auto;

    padding:22px 40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

}

.atg-footer__copyright{

    margin:0;

    color:#8f8a82;

    font-size:13px;

    letter-spacing:.05em;

}

.atg-footer__legal{

    display:flex;

    align-items:center;

    gap:28px;

}

.atg-footer__legal a{

    color:#8f8a82;

    text-decoration:none;

    text-transform:uppercase;

    font-size:11px;

    letter-spacing:.12em;

    transition:.3s;

}

.atg-footer__legal a:hover{

    color:#b48a43;

}


/* MOBILE */

@media (max-width:767px){

    .atg-footer__bottom-inner{

        padding:24px 20px;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        text-align:center;

        gap:14px;

    }

    .atg-footer__copyright{

        font-size:13px;

        line-height:1.6;

    }

    .atg-footer__legal{

        justify-content:center;

        flex-wrap:wrap;

        gap:18px;

    }

    .atg-footer__legal a{

        font-size:10px;

    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .atg-footer__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .atg-footer__logo img {
        max-width: 270px;
    }

    .atg-footer__description {
        font-size: 13px;
    }

    /* Keep Explore and Services readable on narrow phones */

    .atg-footer__column:nth-of-type(2),
    .atg-footer__column:nth-of-type(3) {
        width: 100%;
        display: block;

        padding-left: 0;
        padding-right: 0;
    }

    .atg-footer__hours dl > div {
        gap: 12px;
    }

    .atg-footer__hours dd {
        font-size: 12px;

        white-space: nowrap;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .atg-footer__button,
    .atg-footer__button::before,
    .atg-footer__column a,
    .atg-footer__directions span {
        transition: none;
        animation: none;
    }

    .atg-footer__button:hover,
    .atg-footer__column ul a:hover {
        transform: none;
    }

}/* End custom CSS */