/*
|--------------------------------------------------------------------------
| BAD DECISIONS, GOOD TATTOOS
|--------------------------------------------------------------------------
| Template Forge Product #008
|
| APPROVED VISUAL DIRECTION:
| Punk tattoo shop / flash wall / gig poster / sticker collage
|
| NO archive aesthetic.
| NO legal-document aesthetic.
| NO SaaS cards.
| NO restrained corporate layout.
|--------------------------------------------------------------------------
*/

:root {
    --ink: #0c0c0c;
    --ink-soft: #191919;
    --paper: #f4ead1;
    --paper-light: #fff7df;

    --acid: #d7f22f;
    --acid-dark: #b8d112;

    --hot: #ef3f20;
    --hot-dark: #c62d15;

    --blue: #2458ff;
    --blue-dark: #1539b8;

    --silver: #c8c8c2;
    --silver-light: #eeeeea;
    --silver-dark: #7e7e7a;

    --white: #fffdf7;

    --display:
        "Arial Black",
        "Trebuchet MS",
        Arial,
        sans-serif;

    --heavy:
        "Trebuchet MS",
        Arial,
        sans-serif;

    --sans:
        "Helvetica Neue",
        Arial,
        sans-serif;

    --marker:
        "Comic Sans MS",
        "Bradley Hand",
        cursive;

    --page-width: 1600px;

    --header-height: 82px;

    --ease: 180ms ease;
}

/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(0, 0, 0, 0.035) 0 1px,
            transparent 1.5px
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(0, 0, 0, 0.025) 0 1px,
            transparent 1.5px
        ),
        var(--paper);

    background-size:
        17px 17px,
        23px 23px;

    color: var(--ink);

    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

/*
|--------------------------------------------------------------------------
| Accessibility
|--------------------------------------------------------------------------
*/

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;

    padding: 12px 16px;

    background: var(--acid);
    color: var(--ink);

    border: 3px solid var(--ink);

    font-family: var(--heavy);
    font-size: 0.8rem;
    text-transform: uppercase;

    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 4px solid var(--blue);
    outline-offset: 4px;
}

/*
|--------------------------------------------------------------------------
| Shared Buttons
|--------------------------------------------------------------------------
*/

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 28px;

    border: 3px solid var(--ink);

    font-family: var(--heavy);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    text-transform: uppercase;

    box-shadow:
        5px 5px 0 var(--ink);

    transition:
        transform var(--ease),
        box-shadow var(--ease),
        background-color var(--ease),
        color var(--ease);
}

.button:hover {
    transform: translate(3px, 3px);

    box-shadow:
        2px 2px 0 var(--ink);
}

.button--hot {
    background: var(--hot);
    color: var(--ink);
}

.button--cream {
    background: var(--paper-light);
    color: var(--ink);
}

.button--ink {
    background: var(--ink);
    color: var(--paper-light);

    border-color: var(--ink);

    box-shadow:
        5px 5px 0 var(--hot);
}

.button--blue {
    background: var(--blue);
    color: var(--white);

    box-shadow:
        5px 5px 0 var(--ink);
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;

    background: var(--ink);
    color: var(--white);

    border-bottom: 4px solid var(--acid);
}

.site-header__inner {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.8fr)
        auto
        minmax(580px, 1.8fr);

    align-items: center;

    width: min(100%, var(--page-width));
    min-height: var(--header-height);

    margin-inline: auto;

    padding-inline: 22px;
}

.brand {
    position: relative;

    display: inline-flex;
    flex-direction: column;

    width: fit-content;

    font-family: var(--marker);
    font-weight: 900;
    line-height: 0.98;

    transform: rotate(-3deg);
}

.brand__bad {
    color: var(--white);

    font-size: 1.2rem;
}

.brand__good {
    color: var(--hot);

    font-size: 1.5rem;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 14px;

    font-family: var(--heavy);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    transition:
        color var(--ease),
        background-color var(--ease);
}

.site-nav a::after {
    content: "";

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;

    height: 3px;

    background: var(--acid);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-nav__book {
    margin-left: 8px;

    background: var(--hot);
    color: var(--ink);

    border: 2px solid var(--hot);
}

.site-nav__book::after {
    display: none;
}

.site-nav__book:hover {
    background: var(--acid);
    border-color: var(--acid);
}

.nav-toggle {
    display: none;

    align-items: center;
    gap: 12px;

    justify-self: end;

    background: transparent;

    border: 0;

    cursor: pointer;
}

.nav-toggle__text {
    font-family: var(--heavy);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.nav-toggle__lines {
    display: grid;
    gap: 6px;

    width: 30px;
}

.nav-toggle__lines span {
    display: block;

    width: 100%;
    height: 3px;

    background: var(--white);
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.1fr)
        minmax(0, 0.95fr);

    grid-template-rows:
        minmax(560px, calc(100vh - 120px));

    width: min(100%, var(--page-width));

    margin-inline: auto;

    overflow: hidden;

    background: var(--ink);
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 4;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.12) 35%,
            rgba(0, 0, 0, 0.06) 65%,
            rgba(0, 0, 0, 0.35)
        );
}

.hero__photo {
    position: absolute;
    inset-block: 0;

    overflow: hidden;
}

.hero__photo img {
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.9)
        contrast(1.08);
}

.hero__photo--one {
    left: 0;

    width: 44%;

    clip-path:
        polygon(
            0 0,
            93% 0,
            100% 7%,
            96% 19%,
            100% 31%,
            95% 47%,
            100% 62%,
            94% 76%,
            100% 88%,
            94% 100%,
            0 100%
        );
}

.hero__photo--two {
    right: 0;

    width: 46%;

    clip-path:
        polygon(
            7% 0,
            100% 0,
            100% 100%,
            3% 100%,
            7% 88%,
            2% 76%,
            6% 62%,
            2% 48%,
            8% 33%,
            3% 18%
        );
}

.hero__content {
    position: relative;
    z-index: 20;

    grid-column: 1 / -1;

    align-self: center;
    justify-self: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: min(92%, 900px);

    padding: 46px 54px;

    background:
        linear-gradient(
            rgba(12, 12, 12, 0.95),
            rgba(12, 12, 12, 0.95)
        );

    color: var(--white);

    text-align: center;

    transform: rotate(-1.8deg);

    box-shadow:
        18px 18px 0 rgba(0, 0, 0, 0.45);
}

.hero__content::before {
    content: "";

    position: absolute;
    inset: -12px -10px;
    z-index: -1;

    background: var(--ink);

    clip-path:
        polygon(
            1% 5%,
            12% 2%,
            23% 4%,
            35% 1%,
            49% 4%,
            61% 1%,
            75% 4%,
            89% 1%,
            99% 5%,
            97% 18%,
            100% 32%,
            97% 48%,
            100% 65%,
            96% 81%,
            99% 97%,
            86% 99%,
            72% 96%,
            58% 100%,
            44% 97%,
            30% 100%,
            17% 96%,
            2% 99%,
            4% 82%,
            1% 67%,
            4% 51%,
            1% 34%,
            4% 18%
        );
}

.hero__eyebrow {
    margin: 0 0 18px;

    color: var(--acid);

    font-family: var(--marker);
    font-size: 1rem;
    font-weight: 900;

    transform: rotate(-2deg);
}

.hero h1 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.8rem, 4.4vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    margin-top: 0.22em;

    color: var(--hot);

    font-weight: 900;
}

.hero__intro {
    max-width: 650px;

    margin: 28px auto 0;

    color: #e7e1d4;

    font-size: 1rem;
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    margin-top: 28px;
}

.hero__sticker {
    position: absolute;
    z-index: 30;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1;
    width: 144px;
    padding: 16px;

    border: 4px solid var(--ink);
    border-radius: 50%;

    font-family: "Arial Black", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.015em;
    text-align: center;
    text-transform: uppercase;

    box-shadow:
        5px 5px 0 rgba(0, 0, 0, 0.45);
}

.hero__sticker strong {
    display: block;

    margin-top: 0.08em;

    font-size: 1.06rem;
    line-height: 0.95;
}

.hero__sticker--walkins {
    top: 8%;
    right: 19%;

    background: var(--acid);

    transform: rotate(5deg);
}

.hero__sticker--pain {
    left: 6%;
    bottom: 9%;

    background: var(--blue);
    color: var(--white);

    transform: rotate(-7deg);
}

.hero__flash {
    position: absolute;
    z-index: 25;

    pointer-events: none;

    filter:
        drop-shadow(5px 7px 0 rgba(0, 0, 0, 0.45));
}

.hero__flash img {
    object-fit: contain;
}

.hero__flash--snake {
    left: 1.5%;
    top: 18%;

    width: 120px;

    transform: rotate(-13deg);
}

.hero__flash--rose {
    right: 1.6%;
    top: 10%;

    width: 112px;

    transform: rotate(9deg);
}

.hero__flash--dagger {
    right: 4%;
    bottom: 8%;

    width: 105px;

    transform: rotate(14deg);
}

/*
|--------------------------------------------------------------------------
| Shop Marquee
|--------------------------------------------------------------------------
*/

.shop-marquee {
    overflow: hidden;

    background: var(--acid);
    color: var(--ink);

    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
}

.shop-marquee__track {
    display: flex;
    align-items: center;
    gap: 26px;

    width: max-content;

    min-height: 50px;

    padding-inline: 22px;

    animation:
        tattoo-marquee 28s linear infinite;

    font-family: var(--heavy);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.shop-marquee__track b {
    color: var(--hot);

    font-size: 1rem;
}

@keyframes tattoo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}

/*
|--------------------------------------------------------------------------
| Fresh Ink
|--------------------------------------------------------------------------
*/

.fresh-ink {
    position: relative;

    width: min(100%, var(--page-width));

    margin-inline: auto;

    padding: 78px 28px 86px;

    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(0, 0, 0, 0.07) 0 1px,
            transparent 2px
        ),
        var(--paper);

    background-size: 19px 19px;
}

.fresh-ink::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    border:
        0 solid transparent;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.035),
            transparent
        );
}

.fresh-ink__heading {
    display: grid;
    grid-template-columns:
        0.7fr
        1fr
        auto;

    align-items: end;
    gap: 24px;

    margin-bottom: 40px;
}

.fresh-ink__heading p {
    margin: 0;

    color: var(--blue);

    font-family: var(--marker);
    font-size: 1.15rem;
    font-weight: 900;

    transform: rotate(-3deg);
}

.fresh-ink__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.6rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.fresh-ink__heading a {
    padding: 10px 13px;

    color: var(--blue);

    border: 3px solid var(--blue);

    font-family: var(--heavy);
    font-size: 0.76rem;
    text-transform: uppercase;

    transform: rotate(1deg);
}

/*
|--------------------------------------------------------------------------
| Tattoo Wall
|--------------------------------------------------------------------------
*/

.tattoo-wall {
    display: grid;
    grid-template-columns:
        1.1fr
        0.9fr
        0.8fr
        1.25fr
        0.85fr
        0.9fr;

    align-items: start;
    gap: 15px;
}

.tattoo-shot {
    position: relative;

    display: block;

    background: var(--ink);

    border: 6px solid var(--paper-light);

    box-shadow:
        4px 5px 0 rgba(0, 0, 0, 0.25);

    overflow: hidden;

    transition:
        transform var(--ease),
        z-index var(--ease);
}

.tattoo-shot:nth-child(odd) {
    transform: rotate(-2.2deg);
}

.tattoo-shot:nth-child(even) {
    transform: rotate(2deg);
}

.tattoo-shot:hover {
    z-index: 10;

    transform:
        rotate(0)
        scale(1.035);
}

.tattoo-shot img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    filter:
        saturate(0.95)
        contrast(1.05);
}

.tattoo-shot--one img,
.tattoo-shot--four img {
    height: 500px;
}

.tattoo-shot--three img {
    height: 370px;
}

.tattoo-shot__caption {
    display: block;

    padding: 10px 12px;

    background: var(--paper-light);
    color: var(--ink);

    font-family: var(--marker);
    font-size: 0.9rem;
    line-height: 1;
}

.tattoo-shot__caption strong {
    display: block;

    margin-bottom: 4px;

    font-family: var(--heavy);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| Pinterest Quote
|--------------------------------------------------------------------------
*/

.shop-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    min-height: 130px;

    padding: 26px 40px;

    background: var(--ink);
    color: var(--white);

    text-align: center;
}

.shop-quote p {
    margin: 0;

    color: var(--acid);

    font-family: var(--marker);
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    font-weight: 900;

    transform: rotate(-1.5deg);
}

.shop-quote p strong {
    color: var(--white);
}

.shop-quote > span {
    display: inline-block;

    padding-bottom: 4px;

    border-bottom: 5px solid var(--blue);

    font-family: var(--heavy);
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    text-transform: uppercase;

    transform: rotate(1.5deg);
}

/*
|--------------------------------------------------------------------------
| Artists
|--------------------------------------------------------------------------
*/

.artists-showcase {
    width: min(100%, var(--page-width));

    margin-inline: auto;

    background: var(--ink);
    color: var(--white);
}

.artists-showcase__heading {
    display: grid;
    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 50px;

    padding: 80px 34px 50px;

    background:
        linear-gradient(
            120deg,
            var(--ink),
            #181818
        );
}

.artists-showcase__heading p {
    align-self: end;

    max-width: 440px;

    margin: 0;

    color: var(--paper);

    font-size: 1rem;
    font-weight: 600;
}

.artists-showcase__heading h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.artists-showcase__heading h2 span {
    display: block;

    margin-top: 0.14em;

    color: var(--acid);
}

.artist-feature {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.95fr);

    min-height: 620px;

    overflow: hidden;

    border-top: 5px solid var(--paper);
}

.artist-feature:nth-of-type(even) {
    grid-template-columns:
        minmax(320px, 0.95fr)
        minmax(0, 1.05fr);
}

.artist-feature:nth-of-type(even) .artist-feature__photo {
    grid-column: 2;
    grid-row: 1;
}

.artist-feature:nth-of-type(even) .artist-feature__copy {
    grid-column: 1;
    grid-row: 1;
}

.artist-feature__photo {
    position: relative;

    overflow: hidden;

    background: #1a1a1a;
}

.artist-feature__photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0, 0, 0, 0.28)
        );

    pointer-events: none;
}

.artist-feature__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.65)
        contrast(1.1);
}

.artist-feature__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 60px 58px;
}

.artist-feature__style {
    margin: 0 0 20px;

    font-family: var(--marker);
    font-size: 1.15rem;
    font-weight: 900;

    transform: rotate(-2deg);
}

.artist-feature h3 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.5rem, 3.6vw, 3.9rem);
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.artist-feature h3 span {
    display: block;

    margin-top: 0.16em;
}

.artist-feature__copy > p:not(.artist-feature__style) {
    max-width: 580px;

    margin: 34px 0;

    color: #d9d1bf;

    font-size: 1rem;
    line-height: 1.65;
}

.artist-feature__copy > a {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 4px solid currentColor;

    font-family: var(--heavy);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.artist-feature--mara .artist-feature__copy {
    background: var(--blue);
}

.artist-feature--mara .artist-feature__style {
    color: var(--acid);
}

.artist-feature--eli .artist-feature__copy {
    background: var(--hot);
    color: var(--ink);
}

.artist-feature--eli .artist-feature__copy > p:not(.artist-feature__style) {
    color: var(--ink);
}

.artist-feature--eli .artist-feature__style {
    color: var(--ink);
}

.artist-feature--june .artist-feature__copy {
    background: var(--paper);
    color: var(--ink);
}

.artist-feature--june .artist-feature__copy > p:not(.artist-feature__style) {
    color: var(--ink);
}

.artist-feature--june .artist-feature__style {
    color: var(--blue);
}

.artist-feature--roman .artist-feature__copy {
    background: var(--acid);
    color: var(--ink);
}

.artist-feature--roman .artist-feature__copy > p:not(.artist-feature__style) {
    color: var(--ink);
}

.artist-feature--roman .artist-feature__style {
    color: var(--hot-dark);
}

.artists-showcase__footer {
    display: flex;
    justify-content: center;

    padding: 44px 20px 55px;
}

/*
|--------------------------------------------------------------------------
| Flash Wall
|--------------------------------------------------------------------------
*/

.flash-wall {
    position: relative;

    width: min(100%, var(--page-width));

    margin-inline: auto;

    padding: 72px 30px 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 0, 0, 0.06) 0 1px,
            transparent 1.5px
        ),
        var(--acid);

    background-size: 15px 15px;
}

.flash-wall::before,
.flash-wall::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;

    height: 24px;

    background: var(--paper);

    clip-path:
        polygon(
            0 35%,
            5% 55%,
            11% 28%,
            17% 64%,
            23% 35%,
            31% 61%,
            39% 29%,
            48% 62%,
            56% 31%,
            63% 58%,
            72% 29%,
            80% 62%,
            89% 31%,
            95% 57%,
            100% 34%,
            100% 100%,
            0 100%
        );
}

.flash-wall::before {
    top: -1px;

    transform: rotate(180deg);
}

.flash-wall::after {
    bottom: -1px;
}

.flash-wall__headline {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(200px, 0.55fr)
        minmax(0, 1.45fr);

    gap: 30px;

    margin-bottom: 34px;
}

.flash-wall__headline p {
    margin: 0;

    color: var(--blue);

    font-family: var(--marker);
    font-size: 1.3rem;
    font-weight: 900;

    transform: rotate(-3deg);
}

.flash-wall__headline h2 {
    max-width: 1000px;

    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.5rem, 3.9vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.flash-wall__headline h2 span {
    display: block;

    margin-top: 0.14em;

    color: var(--blue);
}

.flash-wall__art {
    position: relative;

    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;

    align-items: end;

    min-height: 430px;

    padding: 18px 10px 28px;
}

.flash-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition:
        transform var(--ease),
        z-index var(--ease);
}

.flash-card:nth-child(odd) {
    transform: rotate(-4deg);
}

.flash-card:nth-child(even) {
    transform: rotate(3.5deg);
}

.flash-card:hover {
    z-index: 20;

    transform:
        rotate(0)
        scale(1.08);
}

.flash-card img {
    width: 100%;
    max-height: 280px;

    object-fit: contain;

    filter:
        drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.18));
}

.flash-card span {
    display: inline-block;

    margin-top: 10px;

    padding: 3px 8px;

    background: var(--paper-light);

    border: 2px solid var(--ink);

    font-family: var(--marker);
    font-size: 0.95rem;
    font-weight: 900;

    transform: rotate(-2deg);
}

.flash-wall__button {
    display: inline-block;

    margin-top: 25px;

    padding: 13px 18px;

    background: var(--ink);
    color: var(--white);

    font-family: var(--heavy);
    font-size: 0.78rem;
    text-transform: uppercase;

    transform: rotate(-1deg);

    transition:
        background-color var(--ease),
        color var(--ease);
}

.flash-wall__button:hover {
    background: var(--blue);
}

/*
|--------------------------------------------------------------------------
| No Regrets
|--------------------------------------------------------------------------
*/

.no-regrets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    min-height: 90px;

    background: var(--ink);
    color: var(--white);

    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);

    overflow: hidden;
}

.no-regrets span {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    border-right: 3px solid var(--paper);

    font-family: var(--display);
    font-size: clamp(1.35rem, 2.3vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    text-transform: uppercase;

    transform: rotate(-2deg);
}

.no-regrets span:nth-child(even) {
    transform: rotate(2deg);
}

.no-regrets span:last-child {
    border-right: 0;
}

.no-regrets__correction {
    background: var(--hot);
    color: var(--ink);

    text-decoration:
        line-through 5px var(--blue);
}

/*
|--------------------------------------------------------------------------
| Piercing
|--------------------------------------------------------------------------
*/

.piercing-feature {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.9fr);

    width: min(100%, var(--page-width));

    margin-inline: auto;

    background:
        linear-gradient(
            120deg,
            var(--silver-light),
            #9e9e99 35%,
            #efefeb 52%,
            #8a8a86 68%,
            var(--silver-light)
        );

    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
}

.piercing-feature__photo {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-right: 4px solid var(--ink);
}

.piercing-feature__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(0.72)
        contrast(1.07);
}

.piercing-feature__badge {
    position: absolute;
    left: 28px;
    bottom: 30px;

    padding: 12px 16px;

    background: var(--acid);
    color: var(--ink);

    border: 3px solid var(--ink);

    font-family: var(--marker);
    font-size: 1rem;
    font-weight: 900;

    transform: rotate(-6deg);
}

.piercing-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 68px 58px;

    color: var(--ink);
}

.piercing-feature__content > p:first-child {
    margin: 0 0 20px;

    color: var(--blue);

    font-family: var(--marker);
    font-size: 1.2rem;
    font-weight: 900;

    transform: rotate(-3deg);
}

.piercing-feature h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.7rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;

    text-shadow:
        1px 1px 0 var(--white);
}

.piercing-feature h2 span {
    display: block;

    margin-top: 0.16em;

    color: var(--blue);
}

.piercing-feature__intro {
    max-width: 600px;

    margin: 36px 0;

    font-weight: 700;
    line-height: 1.65;
}

/*
|--------------------------------------------------------------------------
| Studio Life
|--------------------------------------------------------------------------
*/

.studio-life {
    position: relative;

    width: min(100%, var(--page-width));

    margin-inline: auto;

    min-height: 740px;

    overflow: hidden;

    background: var(--ink);
}

.studio-life__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(1.15)
        contrast(1.05)
        brightness(0.72);
}

.studio-life__overlay {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: flex-start;

    min-height: 540px;

    padding: 68px 48px;
}

.studio-life__overlay h2 {
    max-width: 860px;

    margin: 0;

    color: var(--white);

    font-family: var(--marker);
    font-size: clamp(2.2rem, 3.4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.08;

    transform: rotate(-2deg);

    text-shadow:
        4px 4px 0 var(--ink);
}

.studio-life__overlay h2 span {
    display: block;

    margin-top: 0.1em;

    color: var(--acid);
}

.studio-life__info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;

    display: grid;
    grid-template-columns:
        1fr
        0.65fr
        0.8fr
        auto;

    background: var(--ink);
    color: var(--white);

    border-top: 4px solid var(--acid);
}

.studio-life__info > * {
    min-height: 150px;

    padding: 24px;

    border-right: 2px solid #555;
}

.studio-life__info > *:last-child {
    border-right: 0;
}

.studio-life__info strong {
    display: block;

    margin-bottom: 10px;

    color: var(--acid);

    font-family: var(--heavy);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.studio-life__info p {
    margin: 0;

    color: #d8d1c3;

    font-size: 0.9rem;
    font-weight: 600;
}

.studio-life__info > a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    background: var(--blue);

    font-family: var(--heavy);
    font-size: 0.78rem;
    text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| Before You Come
|--------------------------------------------------------------------------
*/

.before-you-come {
    width: min(100%, var(--page-width));

    margin-inline: auto;

    padding: 68px 32px 82px;

    background: var(--paper);
}

.before-you-come__title {
    display: grid;
    grid-template-columns:
        0.5fr
        1.5fr;

    gap: 34px;

    align-items: end;

    margin-bottom: 34px;
}

.before-you-come__title p {
    margin: 0;

    color: var(--blue);

    font-family: var(--marker);
    font-size: 1.25rem;
    font-weight: 900;

    transform: rotate(-2deg);
}

.before-you-come__title h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(2.4rem, 3.5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.before-you-come__notes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
}

.before-you-come__notes article {
    position: relative;

    padding: 26px 24px 30px;

    border-right: 3px solid var(--ink);
}

.before-you-come__notes article:last-child {
    border-right: 0;
}

.before-you-come__notes article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    background: var(--ink);
    color: var(--paper);

    font-family: var(--heavy);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.before-you-come__notes h3 {
    margin: 0 0 12px;

    font-family: var(--heavy);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.before-you-come__notes p {
    margin: 0;

    font-size: 0.88rem;
    font-weight: 600;
}

/*
|--------------------------------------------------------------------------
| Booking Poster
|--------------------------------------------------------------------------
*/

.booking-poster {
    position: relative;

    width: min(100%, var(--page-width));

    margin-inline: auto;

    padding: 72px 46px 44px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 0, 0, 0.08) 0 1px,
            transparent 2px
        ),
        var(--hot);

    background-size: 17px 17px;

    border-top: 5px solid var(--ink);
    border-bottom: 5px solid var(--ink);
}

.booking-poster::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 360px;
    aspect-ratio: 1;

    border: 22px solid var(--blue);
    border-radius: 50%;

    opacity: 0.85;

    transform: rotate(-18deg);
}

.booking-poster__scribble {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 4;

    padding: 10px 15px;

    background: var(--ink);
    color: var(--paper);

    border-radius: 50%;

    font-family: var(--marker);
    font-size: 0.86rem;
    font-weight: 900;

    transform: rotate(-8deg);
}

.booking-poster__lead {
    margin: 0;

    color: var(--ink);

    font-family: var(--display);
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.booking-poster h2 {
    max-width: 1250px;

    margin: 12px 0 0;

    font-family: var(--display);
    font-size: clamp(2.5rem, 3.9vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.booking-poster h2 span {
    display: block;

    margin-top: 0.16em;

    color: var(--paper-light);

    text-shadow:
        2px 2px 0 var(--ink);
}

.booking-poster__copy {
    max-width: 650px;

    margin: 32px 0;

    font-weight: 800;
    line-height: 1.55;
}

.booking-poster__button {
    position: relative;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    min-width: min(100%, 430px);
    min-height: 72px;

    padding: 0 25px;

    background: var(--paper);
    color: var(--ink);

    border: 4px solid var(--ink);

    box-shadow:
        7px 7px 0 var(--ink);

    font-family: var(--heavy);
    font-size: 1rem;
    text-transform: uppercase;

    transform: rotate(-1deg);

    transition:
        transform var(--ease),
        box-shadow var(--ease);
}

.booking-poster__button:hover {
    transform:
        translate(3px, 3px)
        rotate(0);

    box-shadow:
        3px 3px 0 var(--ink);
}

.booking-poster__button span {
    font-size: 1.5rem;
}

.booking-poster__fine-print {
    position: relative;
    z-index: 5;

    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;

    margin-top: 50px;

    padding-top: 20px;

    border-top: 3px solid var(--ink);

    font-family: var(--heavy);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.booking-poster__fine-print span::before {
    content: "×";

    margin-right: 7px;

    font-size: 1rem;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    width: min(100%, var(--page-width));

    margin-inline: auto;

    background: var(--ink);
    color: var(--white);

    border-top: 4px solid var(--acid);
}

.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(260px, 0.7fr)
        minmax(280px, 1.3fr);

    align-items: center;

    padding: 38px 30px;

    border-bottom: 2px solid #444;
}

.brand--footer {
    font-size: 1.1rem;
}

.site-footer__top > p {
    margin: 0;

    color: var(--paper);

    font-family: var(--marker);
    font-size: 1.5rem;
    font-weight: 900;

    transform: rotate(-1deg);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-bottom: 2px solid #444;
}

.site-footer__links > div {
    display: grid;
    align-content: start;
    gap: 10px;

    min-height: 190px;

    padding: 30px;

    border-right: 2px solid #444;
}

.site-footer__links > div:last-child {
    border-right: 0;
}

.site-footer__links strong {
    margin-bottom: 8px;

    color: var(--acid);

    font-family: var(--heavy);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-footer__links a {
    width: fit-content;

    color: #d5cec0;

    font-size: 0.86rem;
    font-weight: 700;

    transition: color var(--ease);
}

.site-footer__links a:hover {
    color: var(--hot);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 18px 30px;
}

.site-footer__bottom p {
    max-width: 720px;

    margin: 0;

    color: #8f8f8f;

    font-size: 0.72rem;
    line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| Responsive - 1280px
|--------------------------------------------------------------------------
*/

@media (max-width: 1280px) {

    .site-header__inner {
        grid-template-columns:
            minmax(220px, 0.7fr)
            minmax(0, 1.3fr);

        gap: 20px;
    }

    .site-nav a {
        padding-inline: 10px;
    }

    .tattoo-wall {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .flash-wall__art {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .artist-feature {
        min-height: 560px;
    }

}

/*
|--------------------------------------------------------------------------
| Responsive - 1050px
|--------------------------------------------------------------------------
*/

@media (max-width: 1050px) {

    :root {
        --header-height: 74px;
    }

    .site-header__inner {
        grid-template-columns:
            1fr
            auto;

        min-height: var(--header-height);
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        z-index: 1999;

        display: none;
        flex-direction: column;
        align-items: stretch;

        max-height: calc(100vh - var(--header-height));

        padding: 10px;

        overflow-y: auto;

        background: var(--ink);

        border-bottom: 4px solid var(--acid);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        justify-content: flex-start;

        min-height: 54px;

        padding-inline: 18px;

        border-bottom: 1px solid #333;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav__book {
        margin: 8px 0 0;
    }

    .hero {
        grid-template-rows:
            minmax(650px, calc(100vh - 74px));
    }

    .hero__content {
        width: min(90%, 760px);

        padding: 42px;
    }

    .hero__photo--one {
        width: 52%;
    }

    .hero__photo--two {
        width: 52%;
    }

    .hero__sticker--walkins {
        right: 7%;
    }

    .fresh-ink__heading {
        grid-template-columns: 1fr;
    }

    .tattoo-wall {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .artist-feature,
    .artist-feature:nth-of-type(even) {
        grid-template-columns:
            1fr
            1fr;
    }

    .artist-feature h3 {
        font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    }

    .flash-wall__headline {
        grid-template-columns: 1fr;
    }

    .piercing-feature {
        grid-template-columns: 1fr 1fr;
    }

    .studio-life__info {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .studio-life__info > a {
        grid-column: 1 / -1;

        min-height: 70px;
    }

    .before-you-come__notes {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .before-you-come__notes article:nth-child(2) {
        border-right: 0;
    }

    .before-you-come__notes article:nth-child(-n + 2) {
        border-bottom: 3px solid var(--ink);
    }

}

/*
|--------------------------------------------------------------------------
| Responsive - 800px
|--------------------------------------------------------------------------
*/

@media (max-width: 800px) {

    .hero {
        display: block;

        min-height: 720px;
    }

    .hero__photo {
        height: 100%;
    }

    .hero__photo--one {
        width: 58%;
    }

    .hero__photo--two {
        width: 58%;
    }

    .hero__content {
        position: absolute;
        top: 50%;
        left: 50%;

        width: min(90%, 620px);

        padding: 34px 25px;

        transform:
            translate(-50%, -50%)
            rotate(-1deg);
    }

    .hero h1 {
        font-size: clamp(2.6rem, 7vw, 4rem);
    }

    .hero__sticker {
        width: 105px;

        font-size: 0.82rem;
    }

    .hero__sticker strong {
        font-size: 1rem;
    }

    .hero__sticker--walkins {
        top: 3%;
        right: 3%;
    }

    .hero__sticker--pain {
        left: 3%;
        bottom: 3%;
    }

    .hero__flash {
        display: none;
    }

    .fresh-ink {
        padding-inline: 18px;
    }

    .tattoo-wall {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .tattoo-shot img,
    .tattoo-shot--one img,
    .tattoo-shot--four img,
    .tattoo-shot--three img {
        height: 420px;
    }

    .shop-quote {
        flex-direction: column;
        gap: 12px;
    }

    .artists-showcase__heading {
        grid-template-columns: 1fr;
    }

    .artist-feature,
    .artist-feature:nth-of-type(even) {
        grid-template-columns: 1fr;
    }

    .artist-feature:nth-of-type(even) .artist-feature__photo,
    .artist-feature:nth-of-type(even) .artist-feature__copy {
        grid-column: auto;
        grid-row: auto;
    }

    .artist-feature__photo {
        min-height: 560px;
    }

    .artist-feature__copy {
        min-height: 470px;

        padding: 44px 30px;
    }

    .flash-wall {
        padding-inline: 18px;
    }

    .flash-wall__art {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .no-regrets {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .no-regrets span:nth-child(2) {
        border-right: 0;
    }

    .no-regrets span:nth-child(-n + 2) {
        border-bottom: 3px solid var(--paper);
    }

    .piercing-feature {
        grid-template-columns: 1fr;
    }

    .piercing-feature__photo {
        min-height: 500px;

        border-right: 0;
        border-bottom: 4px solid var(--ink);
    }

    .piercing-feature__content {
        padding: 52px 30px;
    }

    .studio-life {
        min-height: 900px;
    }

    .studio-life__overlay {
        min-height: 540px;

        padding: 50px 28px;
    }

    .studio-life__info {
        grid-template-columns: 1fr 1fr;
    }

    .studio-life__info > * {
        min-height: 130px;
    }

    .studio-life__info > div:nth-child(2) {
        border-right: 0;
    }

    .studio-life__info > div:nth-child(3) {
        grid-column: 1 / -1;

        border-top: 2px solid #555;
        border-right: 0;
    }

    .before-you-come__title {
        grid-template-columns: 1fr;
    }

    .booking-poster {
        padding-inline: 28px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

}

/*
|--------------------------------------------------------------------------
| Responsive - 560px
|--------------------------------------------------------------------------
*/

@media (max-width: 560px) {

    body {
        font-size: 15px;
    }

    .site-header__inner {
        padding-inline: 14px;
    }

    .brand__bad {
        font-size: 0.9rem;
    }

    .brand__good {
        font-size: 1.12rem;
    }

    .nav-toggle__text {
        display: none;
    }

    .hero {
        min-height: 690px;
    }

    .hero__photo--one {
        width: 70%;
    }

    .hero__photo--two {
        width: 70%;
    }

    .hero__content {
        padding: 30px 18px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.45rem);
    }

    .hero__intro {
        font-size: 0.88rem;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__sticker {
        width: 88px;

        border-width: 3px;
    }

    .shop-marquee__track {
        min-height: 44px;

        font-size: 0.86rem;
    }

    .fresh-ink {
        padding-block: 60px 70px;
    }

    .fresh-ink__heading h2 {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .tattoo-wall {
        grid-template-columns: 1fr;
    }

    .tattoo-shot:nth-child(odd),
    .tattoo-shot:nth-child(even) {
        transform: rotate(0);
    }

    .tattoo-shot img,
    .tattoo-shot--one img,
    .tattoo-shot--four img,
    .tattoo-shot--three img {
        height: 520px;
    }

    .artists-showcase__heading {
        padding: 58px 20px 40px;
    }

    .artists-showcase__heading h2 {
        font-size: clamp(2.35rem, 10.5vw, 3.5rem);
    }

    .artist-feature__photo {
        min-height: 480px;
    }

    .artist-feature__copy {
        min-height: auto;

        padding: 42px 22px 48px;
    }

    .artist-feature h3 {
        font-size: clamp(2.45rem, 11vw, 3.65rem);
    }

    .flash-wall__headline h2 {
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .flash-wall__art {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .flash-card img {
        max-height: 220px;
    }

    .no-regrets {
        grid-template-columns: 1fr;
    }

    .no-regrets span,
    .no-regrets span:nth-child(2) {
        min-height: 82px;

        border-right: 0;
        border-bottom: 3px solid var(--paper);
    }

    .no-regrets span:last-child {
        border-bottom: 0;
    }

    .piercing-feature__photo {
        min-height: 420px;
    }

    .piercing-feature h2 {
        font-size: clamp(2.45rem, 10.5vw, 3.6rem);
    }

    .studio-life {
        min-height: 1040px;
    }

    .studio-life__overlay h2 {
        font-size: clamp(2.2rem, 9.5vw, 3.25rem);
    }

    .studio-life__info {
        grid-template-columns: 1fr;
    }

    .studio-life__info > *,
    .studio-life__info > div:nth-child(2),
    .studio-life__info > div:nth-child(3) {
        grid-column: auto;

        border-right: 0;
        border-bottom: 1px solid #555;
    }

    .before-you-come {
        padding-inline: 18px;
    }

    .before-you-come__title h2 {
        font-size: clamp(2.25rem, 9.5vw, 3.25rem);
    }

    .before-you-come__notes {
        grid-template-columns: 1fr;
    }

    .before-you-come__notes article,
    .before-you-come__notes article:nth-child(2) {
        border-right: 0;
        border-bottom: 3px solid var(--ink);
    }

    .before-you-come__notes article:last-child {
        border-bottom: 0;
    }

    .booking-poster {
        padding: 60px 18px 34px;
    }

    .booking-poster__scribble {
        top: 20px;
        right: 18px;

        font-size: 0.7rem;
    }

    .booking-poster__lead {
        font-size: clamp(2.4rem, 10.5vw, 3.5rem);
    }

    .booking-poster h2 {
        font-size: clamp(2.3rem, 10vw, 3.45rem);
    }

    .booking-poster__button {
        min-width: 100%;

        font-size: 0.86rem;
    }

    .booking-poster__fine-print {
        flex-direction: column;
    }

    .site-footer__top,
    .site-footer__links,
    .site-footer__bottom {
        padding-inline: 20px;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }

    .site-footer__links > div {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid #444;
    }

    .site-footer__links > div:last-child {
        border-bottom: 0;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }

}

/*
|--------------------------------------------------------------------------
| Reduced Motion
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

    .shop-marquee__track {
        animation: none;
    }

}