.elementor-20441 .elementor-element.elementor-element-cbc5ebe{--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;}/* Start custom CSS for html, class: .elementor-element-37fd87e */:root {
    --atg-black: #050505;
    --atg-black-soft: #090909;
    --atg-cream: #f4efe6;
    --atg-gold: #b48a43;
    --atg-muted: #bbb4aa;
    --atg-neon-blue: #00e5ff;
    --atg-neon-purple: #8a2be2;
    --atg-neon-pink: #ff2d95;
    --atg-neon-orange: #ffb800;
}


/* =========================================
   HERO
========================================= */

/* =========================================
   AGAINST THE GRAIN — RESPONSIVE HERO
========================================= */

.atg-hero {

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    min-height: calc(100svh - 110px);

    display: flex;
    align-items: center;

    padding: 90px 0 130px;

    background-color: var(--atg-black);

    background-image:
        url("https://atgtattoos.com/wp-content/uploads/2026/08/17F3312A-9EAD-497D-9211-9356F2F526AC_1_201_a.jpeg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}


/* DARK IMAGE OVERLAY */

.atg-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.84) 28%,
            rgba(0, 0, 0, 0.59) 53%,
            rgba(0, 0, 0, 0.26) 76%,
            rgba(0, 0, 0, 0.12) 100%
        );

    pointer-events: none;
}


/* SUBTLE COLOR GLOW */

.atg-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        radial-gradient(
            circle at 20% 44%,
            rgba(138, 43, 226, 0.17),
            transparent 39%
        ),
        radial-gradient(
            circle at 84% 27%,
            rgba(0, 229, 255, 0.1),
            transparent 36%
        ),
        radial-gradient(
            circle at 65% 78%,
            rgba(255, 45, 149, 0.055),
            transparent 30%
        );

    pointer-events: none;
}


/* CONTENT */

.atg-hero-content {
    position: relative;
    z-index: 5;

    width: min(700px, calc(100% - 80px));

    margin-left:
        max(
            40px,
            calc((100vw - 1450px) / 2 + 40px)
        );
}


/* EYEBROW */

.atg-eyebrow {
    margin: 0 0 20px;

    color: var(--atg-gold);

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

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


/* HEADLINE */

.atg-hero h1 {
    max-width: 760px;

    margin: 0 0 28px;

    color: var(--atg-cream);

    font-size: clamp(54px, 5.7vw, 84px);
    font-weight: 700;
    line-height: 1.02;

    letter-spacing: -0.04em;
}

.atg-hero-title-line {
    display: block;
}


/* NEON GRADIENT FLOW */

.atg-neon-text {
    display: inline-block;

    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;
    color: transparent;

    animation:
        atgNeonTextFlow
        7s
        linear
        infinite;
}

@keyframes atgNeonTextFlow {

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

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

}


/* SUPPORTING COPY */

.atg-subtitle {
    max-width: 625px;

    margin: 0 0 40px;

    color: var(--atg-muted);

    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 400;
    line-height: 1.75;
}


/* BUTTON ROW */

.atg-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;
}


/* SHARED BUTTON */

.atg-btn-primary,
.atg-btn-secondary {
    position: relative;
    overflow: hidden;
    isolation: isolate;

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

    min-height: 52px;
    padding: 15px 26px;

    background: transparent;

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

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

    letter-spacing: 0.12em;

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


/* PRIMARY BUTTON */

.atg-btn-primary {
    color: var(--atg-cream);

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

.atg-btn-primary::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-btn-primary:hover,
.atg-btn-primary:focus-visible {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.22),
        0 0 20px rgba(255, 45, 149, 0.16);
}

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

    animation:
        atgHeroButtonGradient
        2.5s
        linear
        infinite;
}


/* SECONDARY BUTTON */

.atg-btn-secondary {
    color: var(--atg-cream);

    border:
        1px solid rgba(244, 239, 230, 0.72);
}

.atg-btn-secondary:hover,
.atg-btn-secondary:focus-visible {
    color: var(--atg-black);

    background: var(--atg-cream);

    border-color: var(--atg-cream);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.25);
}


/* BUTTON ANIMATION */

@keyframes atgHeroButtonGradient {

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

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

}


/* ACCESSIBILITY */

.atg-btn-primary:focus-visible,
.atg-btn-secondary:focus-visible {
    outline:
        2px solid var(--atg-neon-blue);

    outline-offset: 5px;
}


/* BOTTOM FADE */

.atg-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;

    height: 230px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0),
            rgba(5, 5, 5, 0.5) 50%,
            var(--atg-black) 100%
        );

    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .atg-hero {
        min-height:
            calc(100svh - 86px);

        align-items: flex-end;

        padding:
            330px 0 105px;

        background-position:
            58% center;
    }

    .atg-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.1) 0%,
                rgba(5, 5, 5, 0.18) 24%,
                rgba(5, 5, 5, 0.68) 54%,
                rgba(5, 5, 5, 0.94) 78%,
                var(--atg-black) 100%
            ),
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.34) 0%,
                rgba(5, 5, 5, 0.08) 70%,
                rgba(5, 5, 5, 0.2) 100%
            );
    }

    .atg-hero-gradient {
        background:
            radial-gradient(
                circle at 22% 72%,
                rgba(138, 43, 226, 0.14),
                transparent 37%
            ),
            radial-gradient(
                circle at 80% 28%,
                rgba(0, 229, 255, 0.075),
                transparent 30%
            );
    }

    .atg-hero-content {
        width: auto;
        max-width: 760px;

        margin: 0;
        padding: 0 28px;
    }

    .atg-hero h1 {
        max-width: 720px;

        font-size:
            clamp(50px, 8vw, 72px);
    }

    .atg-subtitle {
        max-width: 660px;
    }

}


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

@media (max-width: 650px) {

    .atg-hero {
        min-height:
            calc(100svh - 76px);

        padding:
            285px 0 82px;

        background-position:
            61% top;
    }

    .atg-hero::after {
        height: 150px;
    }

    .atg-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.04) 0%,
                rgba(5, 5, 5, 0.12) 22%,
                rgba(5, 5, 5, 0.52) 47%,
                rgba(5, 5, 5, 0.9) 67%,
                rgba(5, 5, 5, 0.98) 83%,
                var(--atg-black) 100%
            );
    }

    .atg-hero-gradient {
        background:
            radial-gradient(
                circle at 20% 72%,
                rgba(138, 43, 226, 0.13),
                transparent 36%
            ),
            radial-gradient(
                circle at 82% 30%,
                rgba(0, 229, 255, 0.06),
                transparent 28%
            );
    }

    .atg-hero-content {
        width: 100%;
        max-width: none;

        padding: 0 18px;
    }

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

        font-size: 11px;

        letter-spacing: 0.2em;
    }

    .atg-hero h1 {
        margin-bottom: 20px;

        font-size:
            clamp(42px, 12vw, 57px);

        line-height: 1;
        letter-spacing: -0.042em;
    }

    .atg-hero-title-line {
        margin-top: 3px;
    }

    .atg-subtitle {
        margin-bottom: 29px;

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

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

        width: 100%;

        gap: 11px;
    }

    .atg-btn-primary,
    .atg-btn-secondary {
        width: 100%;
        min-height: 52px;

        padding:
            15px 18px;

        font-size: 12px;
    }

}


/* VERY SHORT MOBILE SCREENS */

@media (
    max-width: 650px
) and (
    max-height: 720px
) {

    .atg-hero {
        min-height: 720px;

        padding-top: 235px;
    }

}


/* SMALL MOBILE */

@media (max-width: 390px) {

    .atg-hero {
        padding-top: 250px;

        background-position:
            63% top;
    }

    .atg-hero h1 {
        font-size: 40px;
    }

    .atg-subtitle {
        font-size: 14px;
    }

}


/* REDUCED MOTION */

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

    .atg-neon-text,
    .atg-btn-primary,
    .atg-btn-primary::before,
    .atg-btn-secondary {
        animation: none;
        transition: none;
    }

    .atg-neon-text {
        background-position: 50% 50%;
    }

    .atg-btn-primary:hover,
    .atg-btn-secondary:hover {
        transform: none;
    }

}

/* =========================================
   SERVICES
========================================= */

/* =========================================
   AGAINST THE GRAIN — SERVICES
========================================= */

.atg-services {

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    padding: 88px 0 100px;

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


/* SIX-IMAGE BACKGROUND COLLAGE */

.atg-services__collage {
    position: absolute;
    inset: 0;
    z-index: -3;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;

    background: #000;
}

.atg-services__image {
    position: relative;
    overflow: hidden;

    min-width: 0;
    min-height: 0;

    margin: 0;
}

.atg-services__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.92)
        saturate(1.08)
        contrast(1.04);

    transform: scale(1.025);

    transition:
        transform 1.1s ease,
        filter 0.5s ease;
}

.atg-services__image--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.atg-services__image--2 {
    grid-column: 2;
    grid-row: 1;
}

.atg-services__image--3 {
    grid-column: 3;
    grid-row: 1;
}

.atg-services__image--4 {
    grid-column: 2;
    grid-row: 2;
}

.atg-services__image--5 {
    grid-column: 3;
    grid-row: 2;
}

.atg-services__image--6 {
    position: absolute;
    right: 3.5%;
    bottom: 4%;

    z-index: 2;

    width: 18%;
    height: 27%;

    border: 1px solid rgba(244, 239, 230, 0.26);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.52),
        0 0 20px rgba(138, 43, 226, 0.1);

    transform: rotate(1.5deg);
}


/* BACKGROUND SHADING */

.atg-services__shade {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.64) 0%,
            rgba(5, 5, 5, 0.26) 28%,
            rgba(5, 5, 5, 0.3) 70%,
            rgba(5, 5, 5, 0.76) 100%
        ),
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.28) 0%,
            rgba(5, 5, 5, 0.12) 50%,
            rgba(5, 5, 5, 0.28) 100%
        );
}


/* INNER CONTAINER */

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

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

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


/* SECTION HEADER */

.atg-services__header {
    max-width: 720px;

    margin: 0 auto 42px;

    text-align: center;
}

.atg-services__eyebrow {
    margin: 0 0 11px;

    color: var(--atg-gold);

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

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

.atg-services__header h2 {
    margin: 0 0 15px;

    color: var(--atg-cream);

    font-size: clamp(44px, 4.8vw, 68px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.atg-services__intro {
    margin: 0;

    color: rgba(244, 239, 230, 0.86);

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


/* SERVICE CARDS */

.atg-services__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px;
}

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

    min-width: 0;

    padding: 34px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.9),
            rgba(7, 7, 7, 0.78)
        );

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

    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

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

.atg-service-card::before {
    content: "";

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

    background: linear-gradient(
        120deg,
        rgba(0, 229, 255, 0.055),
        transparent 34%,
        transparent 64%,
        rgba(255, 45, 149, 0.065)
    );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.atg-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(244, 239, 230, 0.72);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.52),
        0 0 26px rgba(138, 43, 226, 0.1);
}

.atg-service-card:hover::before {
    opacity: 1;
}


/* CARD CONTENT */

.atg-service-card__body {
    width: 100%;
}

.atg-service-card__eyebrow {
    margin: 0 0 10px;

    color: var(--atg-gold);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-service-card h3 {
    margin: 0 0 15px;

    color: var(--atg-cream);

    font-size: clamp(40px, 3.5vw, 55px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.03em;
}

.atg-service-card__description {
    min-height: 50px;
    max-width: 600px;

    margin: 0 0 24px;

    color: rgba(244, 239, 230, 0.78);

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


/* SERVICE PHOTOGRAPHY */

.atg-service-card__image {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 270px;

    margin: 0 0 26px;

    border: 1px solid rgba(180, 138, 67, 0.42);
    border-radius: 13px;

    background: #080808;

    box-shadow:
        0 15px 38px rgba(0, 0, 0, 0.42);
}

.atg-service-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.96)
        saturate(1.06)
        contrast(1.02);

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* TATTOO IMAGE CROP */

.atg-service-card--tattoos .atg-service-card__image img {
    object-position: center 20%;
}


/* PIERCING IMAGE CROP */

.atg-service-card--piercings .atg-service-card__image img {
    object-position: center 42%;
}

.atg-service-card:hover .atg-service-card__image img {
    transform: scale(1.035);

    filter:
        brightness(1)
        saturate(1.11)
        contrast(1.02);
}


/* LOCKED BUTTON STYLE */

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

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

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

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

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

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

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

    letter-spacing: 0.12em;

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

.atg-service-card__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-service-card__button:hover,
.atg-service-card__button:focus-visible {
    color: #ffffff;
    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.22),
        0 0 20px rgba(255, 45, 149, 0.16);
}

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

    animation: atgServiceGradient 2.5s linear infinite;
}

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

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

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


/* TABLET */

@media (max-width: 1000px) {

    .atg-services {
        padding: 80px 0 88px;
    }

    .atg-services__container {
        padding: 0 28px;
    }

    .atg-services__cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .atg-service-card__description {
        min-height: 0;
    }

    .atg-service-card__image {
        height: 320px;
    }

    .atg-services__image--6 {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .atg-services {
        padding: 68px 0 74px;
    }

    .atg-services__container {
        padding: 0 18px;
    }

    .atg-services__header {
        margin-bottom: 30px;

        text-align: left;
    }

    .atg-services__header h2 {
        font-size: 43px;
    }

    .atg-services__intro {
        font-size: 15px;
    }

    .atg-services__collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    .atg-services__image--1,
    .atg-services__image--2,
    .atg-services__image--3,
    .atg-services__image--4,
    .atg-services__image--5 {
        grid-column: auto;
        grid-row: auto;
    }

    .atg-services__image--6 {
        display: block;
        position: relative;

        right: auto;
        bottom: auto;

        width: auto;
        height: auto;

        border: 0;
        box-shadow: none;

        transform: none;
    }

    .atg-services__shade {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.72) 0%,
                rgba(5, 5, 5, 0.4) 42%,
                rgba(5, 5, 5, 0.8) 100%
            );
    }

    .atg-service-card {
        padding: 25px 21px;
    }

    .atg-service-card h3 {
        font-size: 44px;
    }

    .atg-service-card__description {
        margin-bottom: 20px;

        font-size: 14px;
    }

    .atg-service-card__image {
        height: 230px;
        margin-bottom: 22px;
    }

    .atg-service-card--tattoos .atg-service-card__image img {
        object-position: center 18%;
    }

    .atg-service-card__button {
        width: 100%;
    }

}


/* REDUCED MOTION */

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

    .atg-service-card,
    .atg-service-card__image img,
    .atg-service-card__button,
    .atg-service-card__button::before {
        transition: none;
        animation: none;
    }

    .atg-service-card:hover,
    .atg-service-card:hover .atg-service-card__image img,
    .atg-service-card__button:hover {
        transform: none;
    }

}

/* =========================================
   GALLERY
========================================= */

/* =========================================
   AGAINST THE GRAIN — GALLERY
========================================= */

.atg-gallery {

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    padding: 92px 0 105px;

    color: var(--atg-cream);

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #080808 48%,
            #050505 100%
        );
}


/* SUBTLE BACKGROUND GRID */

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

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

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.016) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.016) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    opacity: 0.26;

    pointer-events: none;
}


/* BOTTOM TRANSITION */

.atg-gallery::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;

    height: 190px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.38)
        );

    pointer-events: none;
}


/* NEON ATMOSPHERE */

.atg-gallery__glow {
    position: absolute;
    top: 2%;
    left: 50%;
    z-index: -2;

    width: min(1100px, 92vw);
    height: 520px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle at 28% 48%,
            rgba(138, 43, 226, 0.11),
            transparent 36%
        ),
        radial-gradient(
            circle at 72% 44%,
            rgba(0, 229, 255, 0.075),
            transparent 35%
        ),
        radial-gradient(
            circle at 55% 78%,
            rgba(255, 45, 149, 0.06),
            transparent 32%
        );

    filter: blur(18px);

    pointer-events: none;
}


/* CONTAINER */

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

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

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


/* HEADER */

.atg-gallery__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, 0.72fr);

    align-items: end;

    gap: clamp(45px, 7vw, 105px);

    margin-bottom: 44px;
}

.atg-gallery__eyebrow {
    margin: 0 0 13px;

    color: var(--atg-gold);

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

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

.atg-gallery__heading h2 {
    margin: 0;

    color: var(--atg-cream);

    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.042em;
}


/* MATCHES HERO / SERVICES / REVIEWS */

.atg-gallery__neon-word{

    display:inline-block;

    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;
    color:transparent;

    animation:
        atgGalleryNeonFlow
        7s
        linear
        infinite;

}

@keyframes atgGalleryNeonFlow{

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

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

}

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

    .atg-gallery__neon-word{
        animation:none;
        background-position:50% 50%;
    }

}


/* INTRO */

.atg-gallery__intro {
    padding-bottom: 5px;
}

.atg-gallery__intro p {
    max-width: 540px;

    margin: 0;

    color: var(--atg-muted);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   CONTROLLED EDITORIAL GRID
   NO AUTO-PLACEMENT GAPS
========================================= */

.atg-gallery__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-template-rows:
        repeat(6, 225px);

    grid-template-areas:
        "one one two three"
        "one one four three"
        "five six four seven"
        "five eight nine seven"
        "ten eight eleven twelve"
        "thirteen thirteen fourteen twelve";

    gap: 10px;
}


/* EXACT GRID PLACEMENT */

.atg-gallery__item--1 {
    grid-area: one;
}

.atg-gallery__item--2 {
    grid-area: two;
}

.atg-gallery__item--3 {
    grid-area: three;
}

.atg-gallery__item--4 {
    grid-area: four;
}

.atg-gallery__item--5 {
    grid-area: five;
}

.atg-gallery__item--6 {
    grid-area: six;
}

.atg-gallery__item--7 {
    grid-area: seven;
}

.atg-gallery__item--8 {
    grid-area: eight;
}

.atg-gallery__item--9 {
    grid-area: nine;
}

.atg-gallery__item--10 {
    grid-area: ten;
}

.atg-gallery__item--11 {
    grid-area: eleven;
}

.atg-gallery__item--12 {
    grid-area: twelve;
}

.atg-gallery__item--13 {
    grid-area: thirteen;
}

.atg-gallery__item--14 {
    grid-area: fourteen;
}


/* SHARED GALLERY ITEM */

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

    display: block;

    min-width: 0;
    min-height: 0;

    background: #0b0b0b;

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

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.3);

    text-decoration: none;

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

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

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

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.015) 35%,
            rgba(0, 0, 0, 0.68) 100%
        );

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}

.atg-gallery__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.96)
        saturate(1.05)
        contrast(1.02);

    transform: scale(1.012);

    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.45s ease;
}

.atg-gallery__item:hover,
.atg-gallery__item:focus-visible {
    z-index: 4;

    border-color: rgba(244, 239, 230, 0.66);

    transform: translateY(-4px);

    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.46),
        0 0 25px rgba(138, 43, 226, 0.11),
        0 0 18px rgba(255, 45, 149, 0.075);
}

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

.atg-gallery__item:hover img,
.atg-gallery__item:focus-visible img {
    transform: scale(1.06);

    filter:
        brightness(1)
        saturate(1.12)
        contrast(1.025);
}


/* HOVER LABEL */

.atg-gallery__item-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    align-items: flex-end;

    padding: 18px;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    pointer-events: none;
}

.atg-gallery__item-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 10px 15px;

    color: var(--atg-cream);
    background: rgba(5, 5, 5, 0.8);

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

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

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

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

.atg-gallery__item:hover .atg-gallery__item-overlay,
.atg-gallery__item:focus-visible .atg-gallery__item-overlay {
    opacity: 1;

    transform: translateY(0);
}


/* IMAGE CROP ADJUSTMENTS */

.atg-gallery__item--1 img {
    object-position: center 40%;
}

.atg-gallery__item--2 img {
    object-position: center 42%;
}

.atg-gallery__item--3 img {
    object-position: center center;
}

.atg-gallery__item--4 img {
    object-position: center 44%;
}

.atg-gallery__item--5 img {
    object-position: center 38%;
}

.atg-gallery__item--6 img {
    object-position: center 42%;
}

.atg-gallery__item--7 img {
    object-position: center 38%;
}

.atg-gallery__item--8 img {
    object-position: center 42%;
}

.atg-gallery__item--9 img {
    object-position: center center;
}

.atg-gallery__item--10 img {
    object-position: center 40%;
}

.atg-gallery__item--11 img {
    object-position: center center;
}

.atg-gallery__item--12 img {
    object-position: center 40%;
}

.atg-gallery__item--13 img {
    object-position: center 38%;
}

.atg-gallery__item--14 img {
    object-position: center 42%;
}


/* BOTTOM CTA */

.atg-gallery__footer {
    display: flex;
    justify-content: center;

    margin-top: 42px;
}


/* LOCKED SITE BUTTON */

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

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

    min-height: 52px;
    padding: 15px 27px;

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

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

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

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

    letter-spacing: 0.12em;

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

.atg-gallery__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-gallery__button:hover,
.atg-gallery__button:focus-visible {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.22),
        0 0 20px rgba(255, 45, 149, 0.16);
}

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

    animation:
        atgGalleryButtonGradient
        2.5s
        linear
        infinite;
}

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

@keyframes atgGalleryButtonGradient {

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

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

}


/* TABLET */

@media (max-width: 1050px) {

    .atg-gallery {
        padding: 82px 0 90px;
    }

    .atg-gallery__container {
        padding: 0 28px;
    }

    .atg-gallery__header {
        grid-template-columns: 1fr;

        gap: 24px;
        margin-bottom: 36px;
    }

    .atg-gallery__intro {
        max-width: 650px;
    }

    .atg-gallery__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            repeat(8, 290px);

        grid-template-areas:
            "one two"
            "one three"
            "four five"
            "six five"
            "seven eight"
            "nine ten"
            "eleven twelve"
            "thirteen fourteen";

        gap: 9px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .atg-gallery {
        padding: 66px 0 74px;
    }

    .atg-gallery__container {
        padding: 0 18px;
    }

    .atg-gallery__header {
        gap: 20px;
        margin-bottom: 28px;
    }

    .atg-gallery__heading h2 {
        font-size: 43px;
    }

    .atg-gallery__intro p {
        font-size: 15px;
        line-height: 1.65;
    }

    .atg-gallery__grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas: none;

        gap: 8px;
    }

    .atg-gallery__item--1,
    .atg-gallery__item--2,
    .atg-gallery__item--3,
    .atg-gallery__item--4,
    .atg-gallery__item--5,
    .atg-gallery__item--6,
    .atg-gallery__item--7,
    .atg-gallery__item--8,
    .atg-gallery__item--9,
    .atg-gallery__item--10,
    .atg-gallery__item--11,
    .atg-gallery__item--12,
    .atg-gallery__item--13,
    .atg-gallery__item--14 {
        grid-area: auto;

        height: 320px;
    }

    .atg-gallery__item:nth-child(even) {
        height: 245px;
    }

    .atg-gallery__item-overlay {
        display: none;
    }

    .atg-gallery__footer {
        margin-top: 30px;
    }

    .atg-gallery__button {
        width: 100%;
    }

}


/* REDUCED MOTION */

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

    .atg-gallery__neon-word::after,
    .atg-gallery__item,
    .atg-gallery__item img,
    .atg-gallery__item-overlay,
    .atg-gallery__button,
    .atg-gallery__button::before {
        transition: none;
        animation: none;
    }

    .atg-gallery__neon-word::after {
        display: none;
    }

    .atg-gallery__item:hover,
    .atg-gallery__item:hover img,
    .atg-gallery__button:hover {
        transform: none;
    }

}

/* =========================================
   ARTISTS
========================================= */

/* =========================================
   AGAINST THE GRAIN — ARTISTS WITH WORK COLLAGES
========================================= */

.atg-artists {

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    padding: 96px 0 110px;
    color: var(--atg-cream);
    background: linear-gradient(180deg, #050505 0%, #080808 52%, #050505 100%);
}

.atg-artists::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .2;
    pointer-events: none;
}

.atg-artists__glow {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -2;
    width: min(1200px, 92vw);
    height: 620px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 24% 44%, rgba(138,43,226,.1), transparent 36%),
        radial-gradient(circle at 78% 38%, rgba(0,229,255,.07), transparent 34%),
        radial-gradient(circle at 55% 75%, rgba(255,45,149,.05), transparent 32%);
    filter: blur(18px);
    pointer-events: none;
}

.atg-artists__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

.atg-artists__header {
    max-width: 900px;
    margin: 0 auto 62px;
    text-align: center;
}

.atg-artists__eyebrow {
    margin: 0 0 14px;
    color: var(--atg-gold);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.atg-artists__header h2 {
    margin: 0 0 24px;
    color: var(--atg-cream);
    font-size: clamp(48px, 5.6vw, 78px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.042em;
}

.atg-artists__header > p:last-child {
    max-width: 780px;
    margin: 0 auto;
    color: var(--atg-muted);
    font-size: 17px;
    line-height: 1.75;
}

.atg-artists__neon-word {
    display: inline-block;
    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: atgArtistsNeonFlow 7s linear infinite;
}

@keyframes atgArtistsNeonFlow {
    from { background-position: 0% 50%; }
    to { background-position: 300% 50%; }
}

.atg-artist {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 680px;
    margin: 0 calc(50% - 50vw);
    padding: 64px max(40px, calc((100vw - 1450px) / 2 + 40px));
    border-top: 1px solid rgba(180,138,67,.22);
    background: #050505;
}

.atg-artist:last-child { border-bottom: 1px solid rgba(180,138,67,.22); }

.atg-artist__work-bg {
    position: absolute;
    inset: 0;
    z-index: -4;
    display: grid;
    grid-template-columns: 1.25fr .8fr .95fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
    background: #050505;
}

.atg-artist__work {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    margin: 0;
}

.atg-artist__work img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.88) saturate(1.08) contrast(1.04);
    transform: scale(1.025);
    transition: transform 1.1s ease, filter .45s ease;
}

.atg-artist__work--1 { grid-column: 1; grid-row: 1 / 3; }
.atg-artist__work--2 { grid-column: 2; grid-row: 1; }
.atg-artist__work--3 { grid-column: 3; grid-row: 1; }
.atg-artist__work--4 { grid-column: 2; grid-row: 2; }
.atg-artist__work--5 { grid-column: 3; grid-row: 2; }
.atg-artist__work--6 {
    position: absolute;
    right: 3.5%;
    bottom: 5%;
    z-index: 2;
    width: 18%;
    height: 29%;
    border: 1px solid rgba(244,239,230,.24);
    box-shadow: 0 18px 45px rgba(0,0,0,.5);
    transform: rotate(1.5deg);
}

.atg-artist__work-shade {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(5,5,5,.5) 0%, rgba(5,5,5,.28) 37%, rgba(5,5,5,.76) 62%, rgba(5,5,5,.94) 100%),
        linear-gradient(180deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.18) 26%, rgba(5,5,5,.24) 72%, rgba(5,5,5,.8) 100%);
    pointer-events: none;
}

.atg-artist--reverse .atg-artist__work-shade {
    background:
        linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.76) 38%, rgba(5,5,5,.28) 63%, rgba(5,5,5,.5) 100%),
        linear-gradient(180deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.18) 26%, rgba(5,5,5,.24) 72%, rgba(5,5,5,.8) 100%);
}

.atg-artist--cody .atg-artist__work-bg,
.atg-artist--devon .atg-artist__work-bg,
.atg-artist--nick .atg-artist__work-bg { grid-template-columns: .95fr .8fr 1.25fr; }

.atg-artist--cody .atg-artist__work--1,
.atg-artist--devon .atg-artist__work--1,
.atg-artist--nick .atg-artist__work--1 { grid-column: 3; grid-row: 1 / 3; }

.atg-artist--cody .atg-artist__work--2,
.atg-artist--devon .atg-artist__work--2,
.atg-artist--nick .atg-artist__work--2 { grid-column: 1; grid-row: 1; }

.atg-artist--cody .atg-artist__work--3,
.atg-artist--devon .atg-artist__work--3,
.atg-artist--nick .atg-artist__work--3 { grid-column: 2; grid-row: 1; }

.atg-artist--cody .atg-artist__work--4,
.atg-artist--devon .atg-artist__work--4,
.atg-artist--nick .atg-artist__work--4 { grid-column: 1; grid-row: 2; }

.atg-artist--cody .atg-artist__work--5,
.atg-artist--devon .atg-artist__work--5,
.atg-artist--nick .atg-artist__work--5 { grid-column: 2; grid-row: 2; }

.atg-artist--cody .atg-artist__work--6,
.atg-artist--devon .atg-artist__work--6,
.atg-artist--nick .atg-artist__work--6 {
    right: auto;
    left: 3.5%;
    transform: rotate(-1.5deg);
}

.atg-artist__foreground {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(46px, 7vw, 105px);
}

.atg-artist--reverse .atg-artist__foreground { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.atg-artist--reverse .atg-artist__image { order: 2; }
.atg-artist--reverse .atg-artist__content { order: 1; }

.atg-artist__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 550px;
    background: #0c0c0c;
    border: 1px solid rgba(180,138,67,.58);
    box-shadow: 0 28px 70px rgba(0,0,0,.54), 0 0 26px rgba(138,43,226,.06);
}

.atg-artist__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,.01) 45%, rgba(0,0,0,.44) 100%);
    pointer-events: none;
}

.atg-artist__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.96) saturate(1.04) contrast(1.02);
    transform: scale(1.015);
    transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.atg-artist:hover .atg-artist__image img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.08) contrast(1.025);
}

.atg-artist:hover .atg-artist__work img {
    transform: scale(1.055);
    filter: brightness(.96) saturate(1.13) contrast(1.04);
}

.atg-artist--flash .atg-artist__image img { object-position: center 22%; }
.atg-artist--cody .atg-artist__image img { object-position: center 27%; }
.atg-artist--don .atg-artist__image img { object-position: center 28%; }
.atg-artist--devon .atg-artist__image img { object-position: center 27%; }
.atg-artist--caroline .atg-artist__image img { object-position: center 27%; }
.atg-artist--nick .atg-artist__image img { object-position: center 28%; }
.atg-artist--emma .atg-artist__image img { object-position: center 24%; }

.atg-artist__content {
    width: 100%;
    max-width: 620px;
    padding: 38px;
    background: linear-gradient(145deg, rgba(7,7,7,.87), rgba(7,7,7,.72));
    border: 1px solid rgba(180,138,67,.4);
    box-shadow: 0 24px 58px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.atg-artist__role {
    margin: 0 0 12px;
    color: var(--atg-gold);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.atg-artist__content h3 {
    margin: 0 0 22px;
    color: var(--atg-cream);
    font-size: clamp(52px, 5vw, 82px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.045em;
}

.atg-artist__content > p:not(.atg-artist__role) {
    max-width: 590px;
    margin: 0 0 28px;
    color: var(--atg-muted);
    font-size: 16px;
    line-height: 1.75;
}

.atg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 26px;
}

.atg-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 9px 13px;
    color: var(--atg-cream);
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(180,138,67,.46);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.atg-artist__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.atg-artist__buttons .atg-gallery__button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    color: var(--atg-cream);
    background: transparent;
    border: 1px solid var(--atg-gold);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .12em;
    transition: color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.atg-artist__buttons .atg-gallery__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 .3s ease;
}

.atg-artist__buttons .atg-gallery__button:hover,
.atg-artist__buttons .atg-gallery__button:focus-visible {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138,43,226,.22), 0 0 20px rgba(255,45,149,.16);
}

.atg-artist__buttons .atg-gallery__button:hover::before,
.atg-artist__buttons .atg-gallery__button:focus-visible::before {
    opacity: 1;
    animation: atgArtistButtonGradient 2.5s linear infinite;
}

@keyframes atgArtistButtonGradient {
    from { background-position: 0% 50%; }
    to { background-position: 300% 50%; }
}

@media (max-width: 1050px) {
    .atg-artists { padding: 84px 0 92px; }
    .atg-artists__container { padding: 0 28px; }
    .atg-artists__header { margin-bottom: 48px; }
    .atg-artist { min-height: 0; padding: 52px 28px; }
    .atg-artist__foreground,
    .atg-artist--reverse .atg-artist__foreground { grid-template-columns: 1fr; gap: 26px; }
    .atg-artist--reverse .atg-artist__image,
    .atg-artist--reverse .atg-artist__content { order: initial; }
    .atg-artist__image { height: 540px; }
    .atg-artist__content { max-width: 760px; }
    .atg-artist__work-shade,
    .atg-artist--reverse .atg-artist__work-shade {
        background: linear-gradient(180deg, rgba(5,5,5,.46) 0%, rgba(5,5,5,.3) 38%, rgba(5,5,5,.82) 72%, rgba(5,5,5,.94) 100%);
    }
}

@media (max-width: 650px) {
    .atg-artists { padding: 66px 0 74px; }
    .atg-artists__container { padding: 0 18px; }
    .atg-artists__header { margin-bottom: 34px; text-align: left; }
    .atg-artists__header h2 { font-size: 44px; }
    .atg-artists__header > p:last-child { font-size: 15px; line-height: 1.65; }
    .atg-artist { padding: 34px 18px; }
    .atg-artist__work-bg { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 5px; }
    .atg-artist__work--1,
    .atg-artist__work--2,
    .atg-artist__work--3,
    .atg-artist__work--4,
    .atg-artist__work--5,
    .atg-artist__work--6,
    .atg-artist--cody .atg-artist__work--1,
    .atg-artist--cody .atg-artist__work--2,
    .atg-artist--cody .atg-artist__work--3,
    .atg-artist--cody .atg-artist__work--4,
    .atg-artist--cody .atg-artist__work--5,
    .atg-artist--cody .atg-artist__work--6,
    .atg-artist--devon .atg-artist__work--1,
    .atg-artist--devon .atg-artist__work--2,
    .atg-artist--devon .atg-artist__work--3,
    .atg-artist--devon .atg-artist__work--4,
    .atg-artist--devon .atg-artist__work--5,
    .atg-artist--devon .atg-artist__work--6,
    .atg-artist--nick .atg-artist__work--1,
    .atg-artist--nick .atg-artist__work--2,
    .atg-artist--nick .atg-artist__work--3,
    .atg-artist--nick .atg-artist__work--4,
    .atg-artist--nick .atg-artist__work--5,
    .atg-artist--nick .atg-artist__work--6 {
        position: relative;
        inset: auto;
        width: auto;
        height: auto;
        grid-column: auto;
        grid-row: auto;
        border: 0;
        box-shadow: none;
        transform: none;
    }
    .atg-artist__work-shade,
    .atg-artist--reverse .atg-artist__work-shade {
        background: linear-gradient(180deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.38) 34%, rgba(5,5,5,.82) 66%, rgba(5,5,5,.96) 100%);
    }
    .atg-artist__image { height: 420px; }
    .atg-artist__content { padding: 26px 22px; }
    .atg-artist__content h3 { margin-bottom: 18px; font-size: 52px; }
    .atg-artist__content > p:not(.atg-artist__role) { font-size: 15px; line-height: 1.65; }
    .atg-tags { gap: 7px; margin-bottom: 22px; }
    .atg-tags span { min-height: 32px; padding: 8px 11px; font-size: 9px; }
    .atg-artist__buttons { display: grid; grid-template-columns: 1fr; width: 100%; }
    .atg-artist__buttons .atg-gallery__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .atg-artists__neon-word,
    .atg-artist__work img,
    .atg-artist__image img,
    .atg-artist__buttons .atg-gallery__button,
    .atg-artist__buttons .atg-gallery__button::before {
        transition: none;
        animation: none;
    }
    .atg-artist:hover .atg-artist__image img,
    .atg-artist:hover .atg-artist__work img,
    .atg-artist__buttons .atg-gallery__button:hover { transform: none; }
}

/* =========================================
   CONTACT TO BOOK — INSIDE EXISTING CARD
========================================= */

.atg-artist__booking {
    margin-top: 4px;
    padding-top: 24px;

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

.atg-artist__booking-label {
    margin: 0 0 16px;

    color: var(--atg-gold);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;

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


/* =========================================
   FINAL MOBILE ORDER
   Name → Image → Styles → Description → Booking
   Desktop and tablet remain unchanged.
========================================= */

@media (max-width: 650px) {

    .atg-artist__foreground,
    .atg-artist--reverse .atg-artist__foreground {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .atg-artist--reverse .atg-artist__image,
    .atg-artist--reverse .atg-artist__content {
        order: initial;
    }

    /*
       Only on mobile, the content wrapper becomes layout-neutral.
       Its children can then sit around the portrait in the requested order.
    */

    .atg-artist__content {
        display: contents;
    }

    .atg-artist__role {
        display: none;
    }

    /* 1 — NAME */

    .atg-artist__content h3 {
        order: 1;

        width: 100%;

        margin: 0;
        padding: 25px 22px 22px;

        color: var(--atg-cream);

        font-size: 50px;
        line-height: 0.95;

        background:
            linear-gradient(
                145deg,
                rgba(7, 7, 7, 0.92),
                rgba(7, 7, 7, 0.82)
            );

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

        border-bottom: 0;
    }

    .atg-artist__content h3::before {
        content: "Meet the Artist";

        display: block;

        margin-bottom: 13px;

        color: var(--atg-gold);

        font-size: 11px;
        font-weight: 600;
        line-height: 1.3;

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

    /* 2 — PORTRAIT */

    .atg-artist__image {
        order: 2;

        width: 100%;
        height: 420px;

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

        border-bottom: 0;

        box-shadow:
            0 22px 48px rgba(0, 0, 0, 0.42);
    }

    /* 3 — STYLES */

    .atg-tags {
        order: 3;

        width: 100%;

        margin: 0;
        padding: 24px 22px 12px;

        background:
            linear-gradient(
                145deg,
                rgba(7, 7, 7, 0.92),
                rgba(7, 7, 7, 0.82)
            );

        border-left:
            1px solid rgba(180, 138, 67, 0.46);

        border-right:
            1px solid rgba(180, 138, 67, 0.46);
    }

    /* 4 — DESCRIPTION */

    .atg-artist__description {
        order: 4;

        width: 100%;
        max-width: none !important;

        margin: 0 !important;
        padding: 12px 22px 24px;

        color: var(--atg-muted);

        font-size: 15px !important;
        line-height: 1.65 !important;

        background:
            linear-gradient(
                145deg,
                rgba(7, 7, 7, 0.92),
                rgba(7, 7, 7, 0.82)
            );

        border-left:
            1px solid rgba(180, 138, 67, 0.46);

        border-right:
            1px solid rgba(180, 138, 67, 0.46);
    }

    /* 5 — CONTACT TO BOOK */

    .atg-artist__booking {
        order: 5;

        width: 100%;

        margin: 0;
        padding: 22px;

        background:
            linear-gradient(
                145deg,
                rgba(7, 7, 7, 0.92),
                rgba(7, 7, 7, 0.82)
            );

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

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

    .atg-artist__booking-label {
        margin-bottom: 16px;
    }

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

        width: 100%;
    }

    .atg-artist__buttons .atg-gallery__button {
        width: 100%;
    }

}


/* VERY SMALL MOBILE */

@media (max-width: 390px) {

    .atg-artist__content h3 {
        padding-left: 18px;
        padding-right: 18px;

        font-size: 44px;
    }

    .atg-artist__image {
        height: 375px;
    }

    .atg-tags,
    .atg-artist__description,
    .atg-artist__booking {
        padding-left: 18px;
        padding-right: 18px;
    }

}

/* =========================================
   WHY ATG
========================================= */

/* =========================================
   AGAINST THE GRAIN — WHY ATG
========================================= */

.atg-why {

    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    padding: 100px 0 110px;
    color: var(--atg-cream);
    background: linear-gradient(180deg, #050505 0%, #090909 52%, #050505 100%);
}

.atg-why__background {
    position: absolute;
    inset: -4%;
    z-index: 0;
    background: url("https://atgtattoos.com/wp-content/uploads/2026/08/exec-679bb185-ee0c-4563-8ca2-7aa9b3e60076.png") center 48% / cover no-repeat;
    filter: saturate(.8) contrast(.94);
    opacity: 0;
    transform: scale(1.025) translate3d(0, var(--atg-bg-parallax-y, 0px), 0);
    transform-origin: center;
    pointer-events: none;
    transition: opacity 1.4s ease;
}

.atg-why__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5,5,5,.58), rgba(5,5,5,.69)),
        linear-gradient(90deg, rgba(5,5,5,.64), rgba(5,5,5,.55) 50%, rgba(5,5,5,.68));
}

@keyframes atgWhyBackgroundDrift {
    from { transform: scale(1.025) translate3d(-.35%, var(--atg-bg-parallax-y, 0px), 0); }
    to { transform: scale(1.07) translate3d(.35%, calc(var(--atg-bg-parallax-y, 0px) - .5%), 0); }
}

.atg-why__background.is-visible {
    opacity: 1;
    animation: atgWhyBackgroundDrift 32s ease-in-out infinite alternate;
}

.atg-why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.22;
    pointer-events: none;
}

.atg-why::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 210px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
    pointer-events: none;
}

.atg-why__glow {
    position: absolute;
    top: 4%;
    left: 50%;
    z-index: 1;
    width: min(1150px, 92vw);
    height: 590px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 24% 45%, rgba(138, 43, 226, 0.11), transparent 36%),
        radial-gradient(circle at 76% 40%, rgba(0, 229, 255, 0.075), transparent 34%),
        radial-gradient(circle at 55% 78%, rgba(255, 45, 149, 0.055), transparent 32%);
    filter: blur(18px);
    pointer-events: none;
}

.atg-why__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

.atg-why__header {
    max-width: 980px;
    margin: 0 auto 58px;
    text-align: center;
}

.atg-why__eyebrow {
    margin: 0 0 14px;
    color: var(--atg-gold);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.atg-why__header h2 {
    margin: 0 0 24px;
    color: var(--atg-cream);
    font-size: clamp(48px, 5.6vw, 78px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.042em;
}

.atg-why__header > p {
    max-width: 790px;
    margin: 0 auto;
    color: var(--atg-muted);
    font-size: 17px;
    line-height: 1.75;
}

.atg-why__header strong {
    color: var(--atg-cream);
    font-weight: 600;
}

.atg-why__neon {
    display: inline-block;
    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: atgWhyNeonFlow 7s linear infinite;
}

@keyframes atgWhyNeonFlow {
    from { background-position: 0% 50%; }
    to { background-position: 300% 50%; }
}

.atg-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.atg-why-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 330px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(12, 12, 12, 0.9), rgba(7, 7, 7, 0.76));
    border: 1px solid rgba(180, 138, 67, 0.42);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.atg-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        125deg,
        rgba(0, 229, 255, 0.06),
        transparent 34%,
        transparent 64%,
        rgba(255, 45, 149, 0.07)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.atg-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 239, 230, 0.68);
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        0 0 24px rgba(138, 43, 226, 0.1),
        0 0 18px rgba(255, 45, 149, 0.07);
}

.atg-why-card:hover::before { opacity: 1; }

.atg-why-card__number {
    margin: 0 0 28px;
    color: var(--atg-cream);
    font-size: clamp(56px, 5vw, 82px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.atg-why-card h3 {
    margin: 0 0 15px;
    color: var(--atg-gold);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.atg-why-card p {
    margin: auto 0 0;
    color: var(--atg-muted);
    font-size: 14px;
    line-height: 1.7;
}

.atg-why__bottom {
    margin-top: 42px;
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(180, 138, 67, 0.22);
}

.atg-why__bottom p {
    margin: 0;
    color: var(--atg-cream);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.atg-why__bottom .atg-gallery__button {
    flex: 0 0 auto;
}

@media (max-width: 1050px) {
    .atg-why { padding: 84px 0 92px; }
    .atg-why__container { padding: 0 28px; }
    .atg-why__header { margin-bottom: 46px; }
    .atg-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .atg-why-card { min-height: 290px; }
}

@media (max-width: 650px) {
    .atg-why { padding: 66px 0 74px; }
    .atg-why__container { padding: 0 18px; }
    .atg-why__header { margin-bottom: 34px; text-align: left; }
    .atg-why__header h2 { font-size: 43px; }
    .atg-why__header > p { font-size: 15px; line-height: 1.65; }
    .atg-why__grid { grid-template-columns: 1fr; gap: 12px; }
    .atg-why-card { min-height: 250px; padding: 28px 24px; }
    .atg-why-card__number { margin-bottom: 22px; font-size: 62px; }
    .atg-why__bottom {
        margin-top: 30px;
        padding-top: 28px;
        flex-direction: column;
        align-items: flex-start;
    }
    .atg-why__bottom .atg-gallery__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .atg-why__neon,
    .atg-why-card,
    .atg-why-card::before {
        transition: none;
        animation: none;
    }
    .atg-why-card:hover { transform: none; }
}

/* =========================================
   REVIEWS
========================================= */

/* =========================================
   AGAINST THE GRAIN — REVIEWS
========================================= */

.atg-reviews {

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    padding: 96px 0 105px;

    color: var(--atg-cream);

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #090909 52%,
            #050505 100%
        );
}

.atg-reviews__collage {
    position: absolute;
    inset: -3%;
    z-index: 0;
    background: url("assets/client-reviews-tattoo-collage.jpg") center / cover no-repeat;
    opacity: 0;
    filter: saturate(.82) contrast(.92);
    transform: scale(1.025) translate3d(0, var(--atg-bg-parallax-y, 0px), 0);
    pointer-events: none;
    transition: opacity 1.5s ease;
}

.atg-reviews__collage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5,5,5,.66), rgba(5,5,5,.77)),
        linear-gradient(90deg, rgba(5,5,5,.72), rgba(5,5,5,.62) 50%, rgba(5,5,5,.73));
}

@keyframes atgReviewsCollageDrift {
    from { transform: scale(1.025) translate3d(-.3%, var(--atg-bg-parallax-y, 0px), 0); }
    to { transform: scale(1.06) translate3d(.3%, calc(var(--atg-bg-parallax-y, 0px) - .4%), 0); }
}

.atg-reviews__collage.is-visible {
    opacity: .9;
    animation: atgReviewsCollageDrift 38s ease-in-out infinite alternate;
}


/* BACKGROUND TEXTURE */

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

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

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    opacity: 0.22;

    pointer-events: none;
}


/* BOTTOM TRANSITION */

.atg-reviews::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    height: 200px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.44)
        );

    pointer-events: none;
}


/* NEON ATMOSPHERE */

.atg-reviews__glow {
    position: absolute;
    top: 2%;
    left: 50%;
    z-index: 1;

    width: min(1150px, 92vw);
    height: 580px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle at 24% 44%,
            rgba(138, 43, 226, 0.1),
            transparent 36%
        ),
        radial-gradient(
            circle at 76% 40%,
            rgba(0, 229, 255, 0.075),
            transparent 34%
        ),
        radial-gradient(
            circle at 55% 78%,
            rgba(255, 45, 149, 0.055),
            transparent 32%
        );

    filter: blur(18px);

    pointer-events: none;
}


/* CONTAINER */

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

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

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


/* HEADER */

.atg-reviews__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    align-items: end;

    gap: 60px;

    margin-bottom: 46px;
}

.atg-reviews__eyebrow {
    margin: 0 0 14px;

    color: var(--atg-gold);

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

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

.atg-reviews__heading h2 {
    max-width: 820px;

    margin: 0;

    color: var(--atg-cream);

    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.042em;
}


/* NEON HEADING */

.atg-reviews__neon-word {
    display: inline-block;

    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:
        atgReviewsNeonFlow
        7s
        linear
        infinite;
}

@keyframes atgReviewsNeonFlow {

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

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

}


/* OVERALL RATING */

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

    gap: 18px;

    min-width: 330px;
    padding: 22px 26px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.9),
            rgba(7, 7, 7, 0.76)
        );

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

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

.atg-reviews__score {
    color: var(--atg-cream);

    font-size: 58px;
    font-weight: 700;
    line-height: 0.9;

    letter-spacing: -0.05em;
}

.atg-reviews__stars,
.atg-review-card__stars {
    color: #f5b301;

    font-size: 18px;
    line-height: 1;

    letter-spacing: 0.06em;
}

.atg-reviews__rating-details p {
    margin: 8px 0 0;

    color: var(--atg-muted);

    font-size: 13px;
    line-height: 1.4;
}


/* CONTROLLED REVIEW GRID */

.atg-reviews__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));

    gap: 18px;
}

.atg-review-card {
    grid-column: span 4;
}

.atg-review-card:nth-child(7),
.atg-review-card:nth-child(8) {
    grid-column: span 6;
}


/* REVIEW CARD */

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

    min-height: 390px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.92),
            rgba(7, 7, 7, 0.8)
        );

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

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

.atg-review-card::before {
    content: "";

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

    background:
        linear-gradient(
            125deg,
            rgba(0, 229, 255, 0.055),
            transparent 35%,
            transparent 64%,
            rgba(255, 45, 149, 0.07)
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.atg-review-card:hover {
    transform: translateY(-6px);

    border-color: rgba(244, 239, 230, 0.66);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        0 0 24px rgba(138, 43, 226, 0.1),
        0 0 18px rgba(255, 45, 149, 0.07);
}

.atg-review-card:hover::before {
    opacity: 1;
}


/* REVIEWER */

.atg-review-card__top {
    display: grid;
    grid-template-columns: auto 1fr;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

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

    width: 48px;
    height: 48px;

    color: var(--atg-cream);

    background:
        linear-gradient(
            135deg,
            rgba(138, 43, 226, 0.7),
            rgba(0, 229, 255, 0.48)
        );

    border: 1px solid rgba(244, 239, 230, 0.2);
    border-radius: 50%;

    font-size: 19px;
    font-weight: 600;
}

.atg-review-card__reviewer h3 {
    margin: 0 0 4px;

    color: var(--atg-cream);

    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.atg-review-card__reviewer p {
    margin: 0;

    color: var(--atg-muted);

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

.atg-review-card__stars {
    grid-column: 1 / -1;

    margin-top: 3px;
}


/* REVIEW TEXT */

.atg-review-card blockquote {
    margin: 0 0 28px;
    padding: 0;

    color: rgba(244, 239, 230, 0.84);

    font-size: 15px;
    line-height: 1.7;

    quotes: none;
}


/* REVIEW FOOTER */

.atg-review-card__footer {
    margin-top: auto;
    padding-top: 20px;

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

    gap: 14px;

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

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

    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-review-card__footer span:last-child {
    color: #817d76;

    text-align: right;
}


/* SUMMARY CARD */

.atg-review-card--summary {
    justify-content: center;

    background:
        radial-gradient(
            circle at 22% 25%,
            rgba(138, 43, 226, 0.12),
            transparent 36%
        ),
        radial-gradient(
            circle at 82% 76%,
            rgba(0, 229, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.94),
            rgba(7, 7, 7, 0.82)
        );
}

.atg-review-card__label {
    margin: 0 0 18px;

    color: var(--atg-gold);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-review-card__big-score {
    margin: 0 0 10px;

    color: var(--atg-cream);

    font-size: clamp(70px, 7vw, 104px);
    font-weight: 700;
    line-height: 0.85;

    letter-spacing: -0.06em;
}

.atg-review-card--summary h3 {
    margin: 0 0 18px;

    color: var(--atg-cream);

    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
}

.atg-review-card--summary > p:not(.atg-review-card__label) {
    margin: 0 0 28px;

    color: var(--atg-muted);

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


/* BOTTOM CTA */

.atg-reviews__bottom {
    margin-top: 40px;
    padding-top: 32px;

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

    gap: 28px;

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

.atg-reviews__bottom p {
    margin: 0;

    color: var(--atg-cream);

    font-size: clamp(23px, 2.5vw, 35px);
    font-weight: 600;
    line-height: 1.15;

    letter-spacing: -0.025em;
}


/* LOCKED BUTTON */

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

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

    min-height: 52px;
    padding: 15px 25px;

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

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

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

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

    letter-spacing: 0.12em;

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

.atg-reviews__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-reviews__button:hover,
.atg-reviews__button:focus-visible {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.22),
        0 0 20px rgba(255, 45, 149, 0.16);
}

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

    animation:
        atgReviewsButtonGradient
        2.5s
        linear
        infinite;
}

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

@keyframes atgReviewsButtonGradient {

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

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

}


/* TABLET */

@media (max-width: 1050px) {

    .atg-reviews {
        padding: 82px 0 90px;
    }

    .atg-reviews__container {
        padding: 0 28px;
    }

    .atg-reviews__header {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .atg-reviews__rating {
        width: fit-content;
    }

    .atg-review-card,
    .atg-review-card:nth-child(7),
    .atg-review-card:nth-child(8) {
        grid-column: span 6;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .atg-reviews {
        padding: 66px 0 74px;
    }

    .atg-reviews__container {
        padding: 0 18px;
    }

    .atg-reviews__header {
        margin-bottom: 32px;
    }

    .atg-reviews__heading h2 {
        font-size: 43px;
    }

    .atg-reviews__rating {
        width: 100%;
        min-width: 0;

        padding: 20px;
    }

    .atg-reviews__score {
        font-size: 52px;
    }

    .atg-reviews__grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .atg-review-card,
    .atg-review-card:nth-child(7),
    .atg-review-card:nth-child(8) {
        grid-column: auto;

        min-height: auto;
        padding: 26px 22px;
    }

    .atg-review-card blockquote {
        font-size: 15px;
        line-height: 1.65;
    }

    .atg-review-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .atg-review-card__footer span:last-child {
        text-align: left;
    }

    .atg-reviews__bottom {
        margin-top: 30px;
        padding-top: 28px;

        flex-direction: column;
        align-items: flex-start;
    }

    .atg-reviews__button {
        width: 100%;
    }

}


/* REDUCED MOTION */

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

    .atg-reviews__neon-word,
    .atg-review-card,
    .atg-review-card::before,
    .atg-reviews__button,
    .atg-reviews__button::before {
        transition: none;
        animation: none;
    }

    .atg-review-card:hover,
    .atg-reviews__button:hover {
        transform: none;
    }

}

/* =========================================
   CONTACT
========================================= */

/* =========================================
   AGAINST THE GRAIN — CONTACT / CONSULTATION
========================================= */

.atg-contact {

    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    padding: 100px 0 110px;

    color: var(--atg-cream);

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #090909 52%,
            #050505 100%
        );
}

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


/* BACKGROUND GRID */

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

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

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    opacity: 0.22;

    pointer-events: none;
}


/* BOTTOM FADE */

.atg-contact::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;

    height: 220px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.48)
        );

    pointer-events: none;
}


/* ATMOSPHERIC GLOW */

.atg-contact__glow {
    position: absolute;
    top: 2%;
    left: 50%;
    z-index: -2;

    width: min(1200px, 94vw);
    height: 680px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle at 22% 40%,
            rgba(138, 43, 226, 0.11),
            transparent 36%
        ),
        radial-gradient(
            circle at 78% 38%,
            rgba(0, 229, 255, 0.075),
            transparent 34%
        ),
        radial-gradient(
            circle at 58% 78%,
            rgba(255, 45, 149, 0.055),
            transparent 32%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* CONTAINER */

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

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

    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    align-items: start;

    gap: clamp(55px, 7vw, 105px);
}


/* LEFT INTRO */

.atg-contact__intro {
    position: sticky;
    top: 130px;
}

.atg-contact__eyebrow {
    margin: 0 0 14px;

    color: var(--atg-gold);

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

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

.atg-contact__intro h2 {
    max-width: 650px;

    margin: 0 0 25px;

    color: var(--atg-cream);

    font-size: clamp(48px, 5.2vw, 74px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.042em;
}


/* NEON WORD */

.atg-contact__neon-word {
    display: inline-block;

    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;
    color: transparent;

    animation:
        atgContactNeonFlow
        7s
        linear
        infinite;
}

@keyframes atgContactNeonFlow {

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

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

}


.atg-contact__lead {
    max-width: 600px;

    margin: 0 0 42px;

    color: var(--atg-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* CONTACT DETAILS */

.atg-contact__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 20px;
}

.atg-contact__detail {
    min-height: 175px;
    padding: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.9),
            rgba(7, 7, 7, 0.76)
        );

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

    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

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

.atg-contact__detail-label {
    margin: 0 0 16px;

    color: var(--atg-gold);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-contact__detail address {
    margin: 0 0 17px;

    color: var(--atg-cream);

    font-size: 18px;
    font-style: normal;
    line-height: 1.55;
}

.atg-contact__phone {
    color: var(--atg-cream);

    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;

    text-decoration: none;

    transition: color 0.3s ease;
}

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

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

    gap: 9px;

    color: var(--atg-cream);

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

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

    letter-spacing: 0.13em;

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

.atg-contact__text-link span {
    color: var(--atg-gold);
}

.atg-contact__text-link:hover,
.atg-contact__text-link:focus-visible {
    color: var(--atg-gold);

    gap: 13px;
}


/* HOURS */

.atg-contact__hours {
    padding: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.9),
            rgba(7, 7, 7, 0.76)
        );

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

    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

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

.atg-contact__hours-heading {
    margin-bottom: 17px;

    color: var(--atg-gold);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-contact__hours dl {
    margin: 0;
}

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

    gap: 20px;

    padding: 9px 0;

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

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

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

    color: var(--atg-muted);

    font-size: 13px;
    line-height: 1.4;
}

.atg-contact__hours dd {
    color: var(--atg-cream);
    font-weight: 500;
}


/* FORM PANEL */

.atg-contact__form-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-width: 0;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 12, 12, 0.94),
            rgba(7, 7, 7, 0.82)
        );

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

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);

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

.atg-contact__form-panel::before {
    content: "";

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

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(138, 43, 226, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(0, 229, 255, 0.07),
            transparent 31%
        );

    pointer-events: none;
}


/* FORM HEADER */

.atg-contact__form-header {
    margin-bottom: 32px;
}

.atg-contact__form-header > p {
    margin: 0 0 11px;

    color: var(--atg-gold);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-contact__form-header h3 {
    margin: 0 0 12px;

    color: var(--atg-cream);

    font-size: clamp(34px, 3.4vw, 49px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.035em;
}

.atg-contact__form-header span {
    color: var(--atg-muted);

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


/* FORM GRID */

.atg-contact__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 21px 18px;
}

.atg-form-field {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.atg-form-field--full {
    grid-column: 1 / -1;
}


/* LABELS */

.atg-form-field label {
    display: block;

    margin: 0 0 9px;

    color: var(--atg-cream);

    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;

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

.atg-form-field label span {
    color: var(--atg-gold);
}


/* INPUTS */

.atg-form-field input,
.atg-form-field select,
.atg-form-field textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    color: var(--atg-cream);
    background: rgba(3, 3, 3, 0.72);

    border: 1px solid rgba(244, 239, 230, 0.2);
    border-radius: 0;

    outline: none;

    font: inherit;
    font-size: 14px;
    line-height: 1.5;

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

.atg-form-field input,
.atg-form-field select {
    height: 54px;
    min-height: 54px;
    padding: 14px 15px;
}

.atg-form-field textarea {
    min-height: 165px;
    padding: 15px;

    resize: vertical;
}

.atg-form-field input::placeholder,
.atg-form-field textarea::placeholder {
    color: #716d67;
    opacity: 1;
}

.atg-form-field select {
    color-scheme: dark;
    cursor: pointer;
}

.atg-form-field input:focus,
.atg-form-field select:focus,
.atg-form-field textarea:focus {
    background: rgba(3, 3, 3, 0.9);

    border-color: var(--atg-gold);

    box-shadow:
        0 0 0 3px rgba(180, 138, 67, 0.09),
        0 0 20px rgba(138, 43, 226, 0.07);
}


/* FILE UPLOAD */

.atg-form-upload {
    position: relative;
    overflow: hidden;

    min-height: 112px;

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

    gap: 7px;

    padding: 22px;

    background: rgba(3, 3, 3, 0.66);

    border: 1px dashed rgba(180, 138, 67, 0.52);

    text-align: center;

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

.atg-form-upload:hover {
    background: rgba(7, 7, 7, 0.88);

    border-color: var(--atg-cream);

    box-shadow:
        0 0 24px rgba(138, 43, 226, 0.07);
}

.atg-form-upload input {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;
    min-height: 0;

    padding: 0;

    opacity: 0;

    cursor: pointer;
}

.atg-form-upload__title {
    color: var(--atg-cream);

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

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

.atg-form-upload__note {
    color: var(--atg-muted);

    font-size: 11px;
    line-height: 1.4;
}


/* FORM FOOTER */

.atg-contact__form-footer {
    margin-top: 28px;
    padding-top: 25px;

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

    gap: 25px;

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

.atg-contact__form-footer p {
    max-width: 440px;

    margin: 0;

    color: #817d76;

    font-size: 11px;
    line-height: 1.6;
}


/* LOCKED CTA BUTTON */

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

    flex: 0 0 auto;

    min-height: 54px;
    padding: 16px 24px;

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

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

    cursor: pointer;

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

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 0.12em;

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

.atg-contact__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-contact__button:hover,
.atg-contact__button:focus-visible {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(138, 43, 226, 0.22),
        0 0 20px rgba(255, 45, 149, 0.16);
}

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

    animation:
        atgContactButtonGradient
        2.5s
        linear
        infinite;
}

.atg-contact__button:focus-visible,
.atg-contact__text-link:focus-visible,
.atg-contact__phone:focus-visible {
    outline: 2px solid var(--atg-neon-blue);
    outline-offset: 5px;
}

@keyframes atgContactButtonGradient {

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

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

}


/* TABLET */

@media (max-width: 1050px) {

    .atg-contact {
        padding: 84px 0 92px;
    }

    .atg-contact__container {
        padding: 0 28px;

        grid-template-columns: 1fr;

        gap: 46px;
    }

    .atg-contact__intro {
        position: static;
    }

    .atg-contact__form-grid {
        grid-template-columns: 1fr;
    }

    .atg-form-field--full {
        grid-column: auto;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .atg-contact {
        padding: 66px 0 74px;
    }

    .atg-contact__container {
        padding: 0 18px;

        gap: 36px;
    }

    .atg-contact__intro h2 {
        font-size: 43px;
    }

    .atg-contact__lead {
        margin-bottom: 30px;

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

    .atg-contact__details {
        grid-template-columns: 1fr;
    }

    .atg-contact__detail {
        min-height: 0;
    }

    .atg-contact__form-panel {
        width: 100%;
        max-width: 100%;
        padding: 28px 21px;
    }

    .atg-contact__form-grid {
        grid-template-columns: 1fr;
    }

    .atg-form-field--full {
        grid-column: auto;
    }

    .atg-contact__form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .atg-contact__button {
        width: 100%;
    }

}


/* REDUCED MOTION */

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

    .atg-contact__neon-word,
    .atg-contact__button,
    .atg-contact__button::before,
    .atg-contact__text-link {
        transition: none;
        animation: none;
    }

    .atg-contact__button:hover {
        transform: none;
    }

}


/* =========================================
   MOTION LAYER
   Header and footer are intentionally excluded.
========================================= */

.atg-motion-ready [data-atg-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--atg-reveal-y, 34px), 0);
    filter: blur(var(--atg-reveal-blur, 8px));
    transition:
        opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--atg-delay, 0ms);
    will-change: opacity, transform;
}

.atg-motion-ready [data-atg-reveal="left"] {
    --atg-reveal-y: 0px;
    transform: translate3d(-38px, 0, 0);
}

.atg-motion-ready [data-atg-reveal="right"] {
    --atg-reveal-y: 0px;
    transform: translate3d(38px, 0, 0);
}

.atg-motion-ready [data-atg-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.atg-motion-ready [data-atg-reveal].is-visible.motion-complete,
.atg-motion-ready [data-atg-image-reveal].is-visible.motion-complete {
    will-change: auto;
}

.atg-motion-ready .atg-hero-content [data-atg-reveal] {
    transition-duration: 0.95s;
}

.atg-motion-ready [data-atg-image-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--atg-parallax-y, 0px), 0) scale(1.035);
    transition:
        opacity 1s ease,
        transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--atg-delay, 0ms);
    will-change: opacity, transform;
}

.atg-motion-ready [data-atg-image-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, var(--atg-parallax-y, 0px), 0) scale(1);
}

.atg-motion-ready [data-atg-parallax] {
    transform: translate3d(0, var(--atg-parallax-y, 0px), 0);
    will-change: transform;
}

.atg-motion-ready .atg-why-card__number[data-atg-count] {
    font-variant-numeric: tabular-nums;
}

/* Cinematic image drift begins only after each reveal has settled. */
.atg-motion-ready .atg-gallery__item.is-visible img,
.atg-motion-ready .atg-service-card__image.is-visible img {
    animation: atgKenBurns 14s cubic-bezier(.2,.6,.3,1) both;
}

@keyframes atgKenBurns {
    from { transform: scale(1.035); }
    to { transform: scale(1.09); }
}

/* Fine-pointer polish. Variables are updated through one rAF loop in motion.js. */
@media (hover: hover) and (pointer: fine) {
    .atg-service-card,
    .atg-why-card,
    .atg-review-card,
    .atg-contact__form-panel {
        transform: perspective(1100px)
            rotateX(var(--atg-tilt-x, 0deg))
            rotateY(var(--atg-tilt-y, 0deg))
            translate3d(0, var(--atg-lift, 0px), 0);
        transform-style: preserve-3d;
        transition: transform .45s cubic-bezier(.2,.7,.2,1),
            border-color .35s ease,
            box-shadow .45s ease;
    }

    .atg-service-card:hover,
    .atg-why-card:hover,
    .atg-review-card:hover {
        --atg-lift: -5px;
    }

    .atg-motion-ready .atg-service-card.is-visible.motion-complete,
    .atg-motion-ready .atg-why-card.is-visible.motion-complete,
    .atg-motion-ready .atg-review-card.is-visible.motion-complete,
    .atg-motion-ready .atg-contact__form-panel.is-visible.motion-complete {
        transform: perspective(1100px)
            rotateX(var(--atg-tilt-x, 0deg))
            rotateY(var(--atg-tilt-y, 0deg))
            translate3d(0, var(--atg-lift, 0px), 0);
    }

    .atg-gallery__item img,
    .atg-artist__image img,
    .atg-service-card__image img {
        will-change: transform;
    }
}

@media (max-width: 1024px) {
    .atg-motion-ready [data-atg-parallax] {
        transform: none !important;
    }

    .atg-motion-ready .atg-gallery__item.is-visible img,
    .atg-motion-ready .atg-service-card__image.is-visible img {
        animation: none;
    }
}

/* =========================================
   RESPONSIVE SAFETY + DECORATIVE MOTION
   Content sections only; header/footer excluded.
========================================= */

.atg-hero,
.atg-services,
.atg-gallery,
.atg-artists,
.atg-why,
.atg-reviews,
.atg-contact {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .atg-why__background,
    .atg-why__background.is-visible,
    .atg-reviews__collage,
    .atg-reviews__collage.is-visible {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 430px) {
    .atg-hero-content {
        width: calc(100% - 36px);
        margin-right: 18px;
        margin-left: 18px;
    }

    .atg-hero h1 {
        font-size: clamp(42px, 13vw, 54px);
        overflow-wrap: anywhere;
    }

    .atg-btn-primary,
    .atg-btn-secondary {
        width: 100%;
        min-height: 52px;
    }

    .atg-services__container,
    .atg-gallery__container,
    .atg-artists__container,
    .atg-why__container,
    .atg-reviews__container,
    .atg-contact__container {
        min-width: 0;
    }

    .atg-gallery__button,
    .atg-reviews__button,
    .atg-contact__button {
        min-height: 52px;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atg-why__background,
    .atg-reviews__collage {
        animation: none !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atg-motion-ready [data-atg-reveal],
    .atg-motion-ready [data-atg-image-reveal],
    .atg-motion-ready [data-atg-parallax] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }

    .atg-service-card,
    .atg-why-card,
    .atg-review-card,
    .atg-contact__form-panel {
        transform: none !important;
    }
}


/* =========================================
   HOMEPAGE ARTIST PAGE LINKS
========================================= */

.atg-artist__page-link {
    flex: 0 0 auto;
}


/* =========================================
   HOMEPAGE GALLERY LIGHTBOX BUTTON RESET
========================================= */

button.atg-gallery__item {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    margin: 0;
    padding: 0;

    font: inherit;
    color: inherit;
    text-align: inherit;

    background: none;
    border: 0;
    border-radius: 0;

    cursor: zoom-in;
}


/* =========================================
   HOMEPAGE LIGHTBOX
========================================= */

html.atg-lightbox-locked,
body.atg-lightbox-locked {
    overflow: hidden;
}


/* LIGHTBOX SHELL */

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

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

    padding: clamp(24px, 5vw, 72px);

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

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.atg-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* FULL-SCREEN BACKDROP */

body .atg-lightbox__backdrop,
body .atg-lightbox__backdrop:hover,
body .atg-lightbox__backdrop:focus,
body .atg-lightbox__backdrop:focus-visible,
body .atg-lightbox__backdrop:active {
    appearance: none;
    -webkit-appearance: none;

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

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    background-color: rgba(0, 0, 0, 0.94) !important;
    background-image: none !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
    outline: 0 !important;

    opacity: 1 !important;

    cursor: zoom-out;
    -webkit-tap-highlight-color: transparent;
}


/* DIALOG */

.atg-lightbox__dialog {
    position: relative;
    z-index: 1;

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

    width: fit-content;
    max-width: 100%;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);

    margin: auto;

    transform: scale(0.97);

    transition:
        transform 0.25s ease;
}

.atg-lightbox.is-open .atg-lightbox__dialog {
    transform: scale(1);
}


/* IMAGE */

.atg-lightbox__image {
    display: block;

    width: auto;
    height: auto;

    max-width: min(1200px, calc(100vw - 120px));
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);

    object-fit: contain;

    background: #050505;

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

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.78);
}


/* CLOSE BUTTON */

body .atg-lightbox__close,
body .atg-lightbox__close:hover,
body .atg-lightbox__close:focus,
body .atg-lightbox__close:focus-visible,
body .atg-lightbox__close:active {
    appearance: none;
    -webkit-appearance: none;

    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;

    display: block;

    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;

    margin: 0;
    padding: 0;

    color: #f4efe6 !important;

    background-color: rgba(5, 5, 5, 0.92) !important;
    background-image: none !important;

    border:
        1px solid rgba(180, 138, 67, 0.75) !important;

    border-radius: 0 !important;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.42) !important;

    text-shadow: none !important;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}


/* CLOSE ICON */

body .atg-lightbox__close span {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 24px;
    height: 1px;

    margin: 0;
    padding: 0;

    background-color: #f4efe6 !important;
    background-image: none !important;

    pointer-events: none;
}

body .atg-lightbox__close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

body .atg-lightbox__close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* CLOSE BUTTON HOVER */

body .atg-lightbox__close:hover,
body .atg-lightbox__close:focus-visible {
    background-color: rgba(5, 5, 5, 0.98) !important;

    border-color:
        var(--atg-neon-pink) !important;

    outline:
        2px solid var(--atg-neon-blue) !important;

    outline-offset: 3px;
}


/* MOBILE */

@media (max-width: 767px) {

    .atg-lightbox {
        padding:
            70px
            14px
            20px;
    }

    .atg-lightbox__dialog {
        width: 100%;
        max-height: calc(100vh - 90px);
        max-height: calc(100dvh - 90px);
    }

    .atg-lightbox__image {
        max-width: 100%;
        max-height: calc(100vh - 100px);
        max-height: calc(100dvh - 100px);
    }

    body .atg-lightbox__close,
    body .atg-lightbox__close:hover,
    body .atg-lightbox__close:focus,
    body .atg-lightbox__close:focus-visible,
    body .atg-lightbox__close:active {
        position: fixed;

        top:
            max(14px, env(safe-area-inset-top));

        right: 14px;

        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

}


/* REDUCED MOTION */

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

    .atg-lightbox,
    .atg-lightbox__dialog {
        transition: none;
    }

}/* End custom CSS */