.elementor-20320 .elementor-element.elementor-element-542e087{--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-75cbcd9 *//* =========================================
   AGAINST THE GRAIN — HEADER
   CLEAN REWRITE
========================================= */

:root {
    --atg-black: #050505;
    --atg-black-soft: #111111;
    --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;

    --atg-header-height: 104px;
}


/* =========================================
   RESET
========================================= */

.atg-header,
.atg-header *,
.atg-header *::before,
.atg-header *::after {
    box-sizing: border-box;
}

.atg-header ul,
.atg-header ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.atg-header a,
.atg-header button {
    font-family: inherit;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes atgHeaderTextGradient {
    from {
        background-position: 0% 50%;
    }

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

@keyframes atgHeaderButtonGradient {
    from {
        background-position: 0% 50%;
    }

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


/* =========================================
   HEADER SHELL
========================================= */

.atg-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999999;

    width: 100%;

    color: var(--atg-cream);

    background: rgba(5, 5, 5, 0.97);

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

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.atg-header__bar {
    position: relative;
    z-index: 4;

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

    width: 100%;
    max-width: 1500px;
    min-height: var(--atg-header-height);

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

    gap: 28px;
}


/* =========================================
   LOGO
========================================= */

.atg-logo {
    display: flex;
    align-items: center;

    flex: 0 1 auto;
    min-width: 0;

    text-decoration: none;
}

.atg-logo img {
    display: block;

    width: auto;
    height: 78px;
    max-width: 390px;

    object-fit: contain;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.atg-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1 1 auto;
    min-width: 0;
}

.atg-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(20px, 2.4vw, 40px);
}

.atg-nav__list > li {
    position: relative;
}

.atg-nav__list > li > a,
.atg-desktop-dropdown__trigger {
    appearance: none;
    -webkit-appearance: none;

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

    gap: 6px;

    min-height: 42px;

    margin: 0;
    padding: 8px 0;

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

    border: 0;
    border-radius: 0;

    box-shadow: none;

    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.11em;

    cursor: pointer;

    transition: transform 0.25s ease;
}


/* =========================================
   TOP-LEVEL HOVERS
========================================= */

.atg-nav__list > li > a:hover,
.atg-nav__list > li > 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;

    transform: translateY(-1px);

    animation: atgHeaderTextGradient 2.5s linear infinite;
}


/* =========================================
   DROPDOWN TRIGGERS
========================================= */

.atg-desktop-dropdown__trigger > span:first-child {
    display: inline-block;
}

.atg-desktop-dropdown__trigger:hover,
.atg-desktop-dropdown__trigger:focus-visible {
    transform: translateY(-1px);
}

.atg-desktop-dropdown__trigger:hover > span:first-child,
.atg-desktop-dropdown__trigger:focus-visible > span:first-child {
    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: atgHeaderTextGradient 2.5s linear infinite;
}

.atg-desktop-dropdown__chevron {
    display: inline-block;

    color: var(--atg-gold);

    font-size: 11px;

    transition: transform 0.25s ease;
}

.atg-desktop-dropdown.is-open
> .atg-desktop-dropdown__trigger
.atg-desktop-dropdown__chevron,

.atg-desktop-dropdown:hover
> .atg-desktop-dropdown__trigger
.atg-desktop-dropdown__chevron,

.atg-desktop-dropdown:focus-within
> .atg-desktop-dropdown__trigger
.atg-desktop-dropdown__chevron {
    transform: rotate(180deg);
}


/* =========================================
   DESKTOP DROPDOWNS
========================================= */

.atg-desktop-dropdown::after {
    content: "";

    position: absolute;
    top: 100%;
    left: 50%;

    width: 320px;
    height: 20px;

    transform: translateX(-50%);
}

.atg-desktop-dropdown__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;

    display: grid;

    width: max-content;
    min-width: 270px;

    padding: 10px;

    grid-template-columns: repeat(2, minmax(118px, 1fr));
    gap: 8px;

    background: rgba(17, 17, 17, 0.99);

    border: 1px solid rgba(180, 138, 67, 0.55);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.58),
        0 0 18px rgba(180, 138, 67, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.atg-desktop-dropdown__menu--artists {
    width: min(760px, 86vw);

    grid-template-columns: repeat(4, minmax(130px, 1fr));
}

.atg-desktop-dropdown:hover
> .atg-desktop-dropdown__menu,

.atg-desktop-dropdown:focus-within
> .atg-desktop-dropdown__menu,

.atg-desktop-dropdown.is-open
> .atg-desktop-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}

.atg-desktop-dropdown__menu li {
    min-width: 0;
}

.atg-desktop-dropdown__menu a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    padding: 13px 18px;

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

    border: 1px solid transparent;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;

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

.atg-desktop-dropdown__menu a:hover,
.atg-desktop-dropdown__menu 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;

    border-color: rgba(180, 138, 67, 0.25);

    transform: translateX(3px);

    animation: atgHeaderTextGradient 2.5s linear infinite;
}


/* =========================================
   CTA — MATCHES FOOTER
========================================= */

.atg-header__cta,
.atg-mobile-menu__cta {
    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);
    border-radius: 0;

    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;

    cursor: pointer;

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

.atg-header__cta {
    flex: 0 0 auto;
}

.atg-header__cta::before,
.atg-mobile-menu__cta::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-header__cta:hover,
.atg-header__cta:focus-visible,
.atg-mobile-menu__cta:hover,
.atg-mobile-menu__cta: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-header__cta:hover::before,
.atg-header__cta:focus-visible::before,
.atg-mobile-menu__cta:hover::before,
.atg-mobile-menu__cta:focus-visible::before {
    opacity: 1;

    animation: atgHeaderButtonGradient 2.5s linear infinite;
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.atg-menu-toggle {
    appearance: none;
    -webkit-appearance: none;

    position: relative;
    z-index: 60;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    margin: 0;
    padding: 0;

    gap: 6px;

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

    border: 1px solid rgba(180, 138, 67, 0.58);
    border-radius: 0;

    cursor: pointer;
}

.atg-menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    background: var(--atg-cream);

    transform-origin: center;

    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.atg-header.is-menu-open .atg-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.atg-header.is-menu-open .atg-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.atg-header.is-menu-open .atg-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
========================================= */

.atg-mobile-menu,
.atg-menu-backdrop {
    display: none;
}


/* =========================================
   FOCUS
========================================= */

.atg-header a:focus-visible,
.atg-header button:focus-visible {
    outline: 2px solid var(--atg-neon-blue);
    outline-offset: 4px;
}


/* =========================================
   SMALL DESKTOP
========================================= */

@media (max-width: 1240px) {

    :root {
        --atg-header-height: 92px;
    }

    .atg-header__bar {
        padding: 10px 28px;
        gap: 20px;
    }

    .atg-logo img {
        height: 66px;
        max-width: 320px;
    }

    .atg-nav__list {
        gap: 22px;
    }

    .atg-nav__list > li > a,
    .atg-desktop-dropdown__trigger {
        font-size: 12px;
    }

    .atg-header__cta {
        padding: 14px 17px;
        font-size: 11px;
    }
}


/* =========================================
   TABLET + MOBILE
========================================= */

@media (max-width: 1024px) {

    :root {
        --atg-header-height: 84px;
    }

    .atg-header__bar {
        min-height: var(--atg-header-height);
        padding: 10px 18px;
        gap: 16px;
    }

    .atg-logo {
        flex: 1 1 auto;
    }

    .atg-logo img {
        width: auto;
        height: 58px;
        max-width: min(280px, calc(100vw - 100px));
    }

    .atg-nav,
    .atg-header__cta {
        display: none;
    }

    .atg-menu-toggle {
        display: flex;
        -webkit-tap-highlight-color: transparent;
    }

    .atg-menu-backdrop {
        appearance: none;
        -webkit-appearance: none;
        position: fixed;
        inset: 0;
        z-index: 999990;
        display: block;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.72);
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    body.atg-menu-open .atg-menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .atg-mobile-menu {
        position: fixed;
        top: var(--atg-header-height);
        right: 0;
        bottom: 0;
        z-index: 999991;
        display: block;
        width: min(430px, 100vw);
        max-width: 100vw;
        overflow-x: hidden;
        overflow-y: auto;
        background:
            radial-gradient(circle at 100% 0%, rgba(138, 43, 226, 0.12), transparent 35%),
            linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
        border-left: 1px solid rgba(180, 138, 67, 0.42);
        box-shadow: -25px 0 60px rgba(0, 0, 0, 0.58);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(100%, 0, 0);
        transition:
            transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    body.atg-menu-open .atg-mobile-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .atg-mobile-menu__inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100%;
        padding: 18px 20px max(24px, env(safe-area-inset-bottom));
    }

    .atg-mobile-nav,
    .atg-mobile-nav > ul,
    .atg-mobile-nav > ul > li {
        display: block;
        width: 100%;
    }

    .atg-mobile-nav > ul > li {
        border-bottom: 1px solid rgba(180, 138, 67, 0.17);
    }

    .atg-mobile-nav > ul > li:first-child {
        border-top: 1px solid rgba(180, 138, 67, 0.17);
    }

    .atg-mobile-nav > ul > li > a,
    .atg-mobile-dropdown__link,
    .atg-mobile-dropdown__trigger {
        appearance: none;
        -webkit-appearance: none;
        display: flex;
        align-items: center;
        min-height: 52px;
        margin: 0;
        color: var(--atg-cream);
        background: transparent;
        border: 0;
        border-radius: 0;
        text-align: left;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.12em;
    }

    .atg-mobile-nav > ul > li > a {
        width: 100%;
        padding: 14px 8px;
    }

    .atg-mobile-dropdown__row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 48px;
        align-items: stretch;
        width: 100%;
    }

    .atg-mobile-dropdown__link {
        min-width: 0;
        padding: 14px 8px;
    }

    .atg-mobile-dropdown__trigger {
        justify-content: center;
        width: 48px;
        padding: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .atg-mobile-nav > ul > li > a:hover,
    .atg-mobile-nav > ul > li > a:focus-visible,
    .atg-mobile-dropdown__link:hover,
    .atg-mobile-dropdown__link: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: atgHeaderTextGradient 2.5s linear infinite;
    }

    .atg-mobile-dropdown__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        color: var(--atg-gold);
        background: transparent;
        border: 1px solid rgba(180, 138, 67, 0.42);
        font-size: 18px;
        transition: color 0.28s ease, transform 0.28s ease;
    }

    .atg-mobile-dropdown.is-open .atg-mobile-dropdown__icon {
        color: var(--atg-neon-pink);
        transform: rotate(45deg);
    }

    .atg-mobile-dropdown__menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.34s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            padding-bottom 0.34s ease;
    }

    .atg-mobile-dropdown.is-open > .atg-mobile-dropdown__menu {
        max-height: 540px;
        padding-bottom: 10px;
        opacity: 1;
        visibility: visible;
    }

    .atg-mobile-dropdown__menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 42px;
        padding: 10px 12px 10px 22px;
        color: var(--atg-muted);
        background: transparent;
        border-left: 1px solid rgba(180, 138, 67, 0.35);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    .atg-mobile-dropdown__menu a:hover,
    .atg-mobile-dropdown__menu 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: atgHeaderTextGradient 2.5s linear infinite;
    }

    .atg-mobile-menu__cta {
        width: 100%;
        margin-top: 24px;
    }

    .atg-mobile-menu__contact {
        margin-top: 28px;
        padding-top: 24px;
        color: var(--atg-muted);
        font-size: 13px;
        line-height: 1.7;
    }

    .atg-mobile-menu__contact a {
        display: inline-block;
        margin-bottom: 10px;
        color: var(--atg-cream);
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
    }

    .atg-mobile-menu__contact p {
        margin: 0;
    }

    html.atg-menu-locked,
    body.atg-menu-locked {
        overflow: hidden;
        overscroll-behavior: none;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    :root {
        --atg-header-height: 74px;
    }

    .atg-header__bar {
        padding: 8px 14px;
    }

    .atg-logo img {
        height: 48px;
        max-width: calc(100vw - 84px);
    }

    .atg-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .atg-mobile-menu {
        width: 100vw;
    }

    .atg-mobile-menu__inner {
        padding: 14px 16px max(22px, env(safe-area-inset-bottom));
    }
}

/* =========================================
   PORTALED MOBILE MENU
========================================= */

body > .atg-mobile-menu,
body > .atg-menu-backdrop {
    --atg-black: #050505;
    --atg-black-soft: #111111;
    --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;
}

/* The mobile drawer is portaled out of .atg-header by JS, so it must
   carry its own box-sizing reset after it becomes a direct body child. */
body > .atg-mobile-menu,
body > .atg-mobile-menu *,
body > .atg-mobile-menu *::before,
body > .atg-mobile-menu *::after,
body > .atg-menu-backdrop {
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    body > .atg-menu-backdrop {
        z-index: 999990;
    }

    body > .atg-mobile-menu {
        top: var(--atg-header-height, 84px);
        right: 0;
        width: min(430px, 100%);
        max-width: 100%;
        z-index: 999991;
    }

    body > .atg-mobile-menu .atg-mobile-menu__inner,
    body > .atg-mobile-menu .atg-mobile-nav,
    body > .atg-mobile-menu .atg-mobile-nav > ul,
    body > .atg-mobile-menu .atg-mobile-nav > ul > li {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================
   ELEMENTOR EDITOR
   Only unavoidable !important declarations.
========================================= */

body.elementor-editor-active .atg-header,
body.elementor-editor-preview .atg-header,
body.elementor-editor-active
.elementor-location-header .atg-header,
body.elementor-editor-preview
.elementor-location-header .atg-header {
    position: relative !important;
    inset: auto !important;
    z-index: 20 !important;

    width: 100% !important;
}

body.elementor-editor-active .atg-mobile-menu,
body.elementor-editor-active .atg-menu-backdrop,
body.elementor-editor-preview .atg-mobile-menu,
body.elementor-editor-preview .atg-menu-backdrop {
    display: none !important;
}


/* =========================================
   REDUCED MOTION
========================================= */

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

    .atg-header__cta,
    .atg-header__cta::before,
    .atg-mobile-menu__cta,
    .atg-mobile-menu__cta::before,
    .atg-nav__list > li > a,
    .atg-desktop-dropdown__trigger,
    .atg-desktop-dropdown__menu a,
    .atg-mobile-nav a,
    .atg-mobile-dropdown__trigger,
    .atg-mobile-dropdown__menu a {
        transition: none;
        animation: none;
    }

    .atg-header__cta:hover,
    .atg-mobile-menu__cta:hover,
    .atg-nav__list > li > a:hover,
    .atg-desktop-dropdown__menu a:hover {
        transform: none;
    }
}/* End custom CSS */