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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fafafa;
    color: #000;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}


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

.site-header {
    width: 100%;

    position: sticky;
    top: 0;
    z-index: 900;

    background: #fff;

    border-bottom: 1px solid #eeeeee;
}

.main-navigation {
    width: 100%;
    height: 115px;

    padding: 0 45px;

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

.brand {
    display: flex;
    align-items: center;
}

.brand a {
    display: block;
}

.logo {
    width: 78px;
    height: auto;

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

.brand:hover .logo {
    opacity: 0.8;
    transform: scale(1.03);
}

.navigation-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 28px;
}

.navigation-links li a {
    position: relative;

    display: block;

    color: #000;

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

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;

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

.navigation-links li a:hover {
    opacity: 0.6;
    transform: translateY(-1px);
}

.navigation-links li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #000;

    transition: width 0.35s ease;
}

.navigation-links li a:hover::after,
.navigation-links li a.active::after {
    width: 100%;
}

.navigation-links li a.icon-link::after {
    display: none;
}

.navigation-links li a.icon-link {
    font-size: 15px;
}


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

.hero {
    width: calc(100% - 80px);
    max-width: 1800px;
    min-height: 200px;

    margin: 55px auto 190px;

    background: transparent;

    display: grid;
    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(360px, 0.85fr);

    align-items: stretch;
}

.hero-image {
    min-height: 680px;

    overflow: hidden;
}

.hero-image > img {
    width: 100%;
    height: 90%;

    object-fit: cover;

    transition: transform 1.4s ease;
}

.hero-image:hover > img {
    transform: scale(1.025);
}

.hero-text {
    padding: 60px 75px;

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

    color: #000;
}

.hero-text .eyebrow {
    margin-top: -20px;
    margin-bottom: 28px;
}
.hero-artist {
    margin-top: -60px;
    margin-bottom: 24px;
}
.hero-text h1 {
    margin: 0 0 26px;

    font-size: clamp(58px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;
    position:relative;
    left: -4px;

}

.hero-text h2 {
    max-width: 430px;

    color: #626262;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 38px;
    padding: 17px 28px;

    border: 1px solid #000;

    background: #000;
    color: #fff;

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

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.hero-button i {
    margin-left: 12px;

    transition: transform 0.35s ease;
}

.hero-button:hover {
    background: transparent;
    color: #000;

    transform: translateY(-2px);
}

.hero-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   HOMEPAGE FEATURED ARTISTS
========================================================= */

.editorial-artists {
    width: 100%;
    max-width: 1800px;

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

    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);

    gap: 80px;

    align-items: start;
}

.artists-intro {
    padding-top: 2px;
}

.artists-intro h2 {
    margin-bottom: 26px;

    font-size: 30px;
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -1px;
}

.artists-intro p {
    max-width: 295px;

    margin-bottom: 45px;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
}

.text-link {
    display: inline-block;

    padding-bottom: 6px;

    border-bottom: 1px solid #000;

    color: #000;

    text-decoration: none;

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

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

.text-link:hover {
    opacity: 0.55;
    transform: translateX(3px);
}

.editorial-artist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    column-gap: 70px;
    row-gap: 90px;
}

.editorial-artist-card {
    position: relative;
    z-index: 1;

    display: block;

    color: #000;

    text-decoration: none;

    transform: translateY(0) scale(1);
    transform-origin: center center;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}

.editorial-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    background: #eeeeee;

    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.editorial-artist-card h3 {
    margin-top: 22px;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

.editorial-artist-card:hover,
.editorial-artist-card:focus-visible,
.editorial-artist-card.is-selected {
    z-index: 5;

    transform: translateY(-14px) scale(1.035);
}

.editorial-artist-card:hover .editorial-image img,
.editorial-artist-card:focus-visible .editorial-image img,
.editorial-artist-card.is-selected .editorial-image img {
    transform: scale(1.045);
}

.editorial-artist-grid:has(.editorial-artist-card:hover)
.editorial-artist-card:not(:hover) {
    opacity: 0.75;
}


/* =========================================================
   HOMEPAGE EXHIBITION
========================================================= */

.exhibition {
    margin-bottom: 130px;
    padding: 95px 40px;

    background: #f4f4f4;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);

    gap: 80px;

    align-items: center;
}

.exhibition-image {
    overflow: hidden;
}

.exhibition-image img {
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    display: block;

    border: 1px solid #ddd;

    transition: transform 1.2s ease;
}

.exhibition-image:hover img {
    transform: scale(1.04);
}

.exhibition-text h2 {
    margin: 22px 0;

    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.exhibition-text h3 {
    max-width: 420px;

    color: #777;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.exhibition-text a {
    display: inline-block;

    margin-top: 30px;
    padding: 16px 32px;

    background: #000;
    color: #fff;

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

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.exhibition-text a:hover {
    background: transparent;
    color: #000;

    box-shadow: inset 0 0 0 1px #000;

    transform: translateY(-2px);
}


/* =========================================================
   HOMEPAGE AVAILABLE WORKS
========================================================= */

.available-works {
    max-width: 1320px;

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

.section-header {
    margin-bottom: 25px;

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

.section-header h2 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-header a {
    padding-bottom: 5px;

    border-bottom: 1px solid #000;

    color: #000;

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

    font-size: 11px;
    letter-spacing: 2px;

    transition: opacity 0.3s ease;
}

.section-header a:hover {
    opacity: 0.55;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 0;
}

.work-card {
    padding-right: 28px;
}

.work-image-link {
    display: block;

    overflow: hidden;
}

.work-card img {
    width: 100%;
    height: 300px;

    margin-bottom: 20px;

    object-fit: cover;

    background: #eee;

    border: 1px solid #ddd;

    transition: transform 0.8s ease;
}

.work-card:hover img {
    transform: scale(1.035);
}

.work-card h3 {
    margin-bottom: 8px;

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;

    transition: transform 0.35s ease;
}

.work-card:hover h3 {
    transform: translateY(-3px);
}

.work-card p {
    color: #777;

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

.work-card span {
    display: block;

    margin-top: 12px;

    font-size: 14px;
}

.browse-card {
    height: 300px;

    border: 2px dashed #ddd;

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

    color: #777;

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

    font-size: 12px;
    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.browse-card:hover {
    background: #fff;
    color: #000;

    transform: translateY(-4px);
}

.browse-card i {
    margin-bottom: 15px;

    font-size: 22px;
}


/* =========================================================
   HOMEPAGE PHILOSOPHY
========================================================= */

.philosophy {
    max-width: 900px;

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

    text-align: center;
}

.philosophy h2 {
    margin: 35px 0 25px;

    font-size: 34px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
}

.philosophy .line {
    width: 70px;
    height: 1px;

    margin: 0 auto 25px;

    background: #999;
}

.philosophy h3 {
    max-width: 620px;

    margin: 0 auto;

    color: #777;

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


/* =========================================================
   ARTISTS PAGE INTRODUCTION
========================================================= */

.artists-page-intro {
    width: 100%;
    max-width: 1250px;

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

.artists-page-intro .eyebrow {
    margin-bottom: 28px;
}

.artists-page-intro h1 {
    margin: 0 0 22px;

    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.artists-page-description {
    max-width: 760px;

    color: #6f6f6f;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}


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

.artists-directory {
    width: 100%;
    max-width: 1180px;

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

.artists-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    column-gap: 42px;
    row-gap: 75px;
}

.directory-artist-card {
    display: block;

    color: #000;

    text-decoration: none;

    transform: translateY(0);

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}

.directory-artist-card h2 {
    margin-top: 24px;

    color: #111;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.3px;

    transition: opacity 0.3s ease;
}

.directory-artist-image {
    width: 100%;

    aspect-ratio: 5 / 4;

    overflow: hidden;

    background: #eee;
}

.directory-artist-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.directory-artist-info {
    padding-top: 18px;

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

    gap: 20px;
}

.directory-artist-info h2 {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

.directory-artist-info p {
    color: #777;

    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: right;
    text-transform: uppercase;
}

.directory-artist-card:hover {
    transform: translateY(-3px);
}

.directory-artist-card:hover .directory-artist-image img {
    transform: scale(1.02);
}

.directory-artist-card:hover h2 {
    opacity: 0.65;
}

.artists-directory-grid:has(.directory-artist-card:hover)
.directory-artist-card:not(:hover) {
    opacity: 0.75;
}


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

.artists-list {
    max-width: 1200px;

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

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 60px 30px;
}

.artist-row {
    display: block;

    padding: 0;

    border: none;

    color: #000;

    text-decoration: none;

    transition: transform 0.35s ease;
}

.artist-row-image {
    width: 100%;

    margin-bottom: 24px;

    overflow: hidden;

    background: #eeeeee;
}

.artist-row-image img {
    width: 100%;
    height: auto;

    transition: transform 0.7s ease;
}

.artist-row h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;

    transition: opacity 0.35s ease;
}

.artist-row:hover {
    transform: translateY(-4px);
}

.artist-row:hover .artist-row-image img {
    transform: scale(1.015);
}

.artist-row:hover h2 {
    opacity: 0.6;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 60px 35px;

    background: #fafafa;

    border-top: 1px solid #ddd;
}

.footer-grid {
    margin-bottom: 60px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;

    gap: 80px;
}

.site-footer h3 {
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a {
    color: #777;

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

    text-decoration: none;
}

.footer-column > a {
    display: block;

    margin-bottom: 9px;

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

.footer-column > a:hover {
    color: #000;

    transform: translateX(3px);
}

.footer-brand > a {
    display: inline-block;

    margin-bottom: 20px;
}

.footer-brand img {
    width: 115px;
    height: auto;
}

.footer-brand > a:hover {
    opacity: 0.7;
}

.footer-brand p {
    max-width: 210px;
}

.socials {
    margin-bottom: 28px;

    display: flex;
    align-items: center;

    gap: 18px;
}

.socials a {
    color: #000;

    text-decoration: none;

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

.socials a:first-child {
    font-size: 22px;
}

.socials .artsy-link {
    font-size: 13px;
}

.socials a:hover {
    opacity: 0.6;

    transform: translateY(-2px);
}

.newsletter {
    display: flex;

    max-width: 250px;

    border-bottom: 1px solid #aaa;
}

.newsletter input {
    min-width: 0;
    flex: 1;

    padding: 10px 0;

    border: none;
    outline: none;

    background: transparent;

    color: #000;

    font-family: "Inter", sans-serif;
}

.newsletter input::placeholder {
    color: #888;
}

.newsletter button {
    border: none;

    background: transparent;

    color: #000;

    text-transform: uppercase;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.newsletter button:hover {
    opacity: 0.55;
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid #ddd;

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

.footer-bottom div {
    display: flex;

    gap: 30px;
}

.footer-bottom a:hover {
    color: #000;
}


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

@media (max-width: 1100px) {

    .hero {
        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(330px, 0.9fr);
    }

    .hero-text {
        padding: 70px 50px;
    }

    .editorial-artists {
        grid-template-columns: 250px minmax(0, 1fr);

        gap: 45px;
    }

    .editorial-artist-grid {
        column-gap: 30px;
        row-gap: 65px;
    }

    .artists-directory-grid {
        column-gap: 30px;
        row-gap: 70px;
    }

    .footer-grid {
        gap: 40px;
    }

}
/* =========================================================
   INDIVIDUAL ARTIST PAGE
========================================================= */

.artist-profile-page {
    width: 100%;
}

.artist-hero {
    width: calc(100% - 80px);
    max-width: 1800px;
    height: calc(100vh - 115px);
    min-height: 600px;

    margin: 0 auto;

    overflow: hidden;
    background: #eeeeee;
}

.artist-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}
/* =========================================================
   INDIVIDUAL ARTIST PAGE
========================================================= */

.artist-page {
    width: 100%;
}

.artist-page-hero {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #eeeeee;
}

.artist-page-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.artist-page-hero-title {
    position: absolute;
    inset: 0;

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

    padding: 40px;
    text-align: center;
}

.artist-page-hero-title h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3px;
}


/* Artist biography */

.artist-page-biography {
    width: calc(100% - 80px);
    max-width: 720px;
    margin: 0 auto;
    padding: 90px 0 120px;
}

.artist-page-biography p {
    margin: 0 0 26px;
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.artist-page-biography p:last-child {
    margin-bottom: 0;
}
/* Artist statement */

.artist-statement {
    width: calc(100% - 80px);
    max-width: 1320px;

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

    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(280px, 0.65fr);
    gap: 140px;

    align-items: start;
}

.artist-statement-image {

    display: flex;
    flex-direction: column;

    gap: 40px;
}

.artist-statement-image img {

    width: 100%;
    height: auto;

    display: block;
}
.artist-statement-image {

    display: flex;
    flex-direction: column;

    gap: 40px;
}

.artist-statement-image img {

    width: 100%;
    height: auto;

    display: block;
}
.artist-statement-text {
    max-width: 430px;
    padding-top: 110px;
}

.artist-statement-text p {
    margin: 0 0 28px;

    color: #2f2f2f;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.artist-statement-text p:last-child {
    margin-bottom: 0;
}
/* =========================================================
   SELECTED WORKS
========================================================= */

.selected-works {

    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 180px auto;

}

.selected-works-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 60px;

}

.selected-works-header h2 {

    font-size: 21px;

    font-weight: 400;

    letter-spacing: -0.02em;

}

.artwork-filter-button {

    display: flex;

    align-items: center;

    gap: 10px;

    background: transparent;

    border: none;

    cursor: pointer;

    font-size: 14px;

    letter-spacing: .08em;

    text-transform: uppercase;

    margin-top: -4px;

    position: relative;
    top: -40px;
}

/* =========================================================
   ARTWORK FILTER PANEL
========================================================= */

.filter-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.28);

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:999;
}

.filter-overlay.open{

    opacity:1;
    visibility:visible;

    pointer-events:auto;
}

.artwork-filter-panel{

    position:fixed;

    top:0;
    left:0;

    width:460px;
    max-width:90vw;
    height:100vh;

    overflow-y:auto;

    background:#ffffff;

    padding:90px 45px 45px;

    display:grid;
    grid-template-columns:1fr;
    gap:36px;

    border-right:1px solid #e5e5e5;

    transform:translateX(-100%);

    transition:transform .45s cubic-bezier(.22,1,.36,1);

    z-index:1000;
}

.artwork-filter-panel.open{

    transform:translateX(0);
}

.filter-close{

    position:absolute;

    top:28px;
    right:28px;

    width:34px;
    height:34px;

    background:none;
    border:none;

    cursor:pointer;
}

.filter-close span{

    position:absolute;

    left:50%;
    top:50%;

    width:22px;
    height:1px;

    background:#000;
}

.filter-close span:first-child{

    transform:
        translate(-50%,-50%)
        rotate(45deg);
}

.filter-close span:last-child{

    transform:
        translate(-50%,-50%)
        rotate(-45deg);
}

.filter-group h3{

    margin-bottom:18px;

    font-size:12px;
    font-weight:600;

    letter-spacing:1.5px;
    text-transform:uppercase;
}

.filter-group label{

    display:flex;
    align-items:center;

    gap:8px;

    margin-bottom:12px;

    font-size:14px;

    color:#555;
}

.filter-group input{

    margin:0;
}

.filter-actions{

    display:flex;

    justify-content:flex-end;

    gap:12px;

    padding-top:25px;

    border-top:1px solid #e5e5e5;
}

.filter-clear,
.filter-apply{

    padding:12px 22px;

    background:transparent;
    border:1px solid #000;

    cursor:pointer;

    transition:.3s;
}

.filter-apply{

    background:#000;
    color:#fff;
}

.filter-clear:hover{

    background:#000;
    color:#fff;
}

.filter-apply:hover{

    background:#222;
}
/* =========================================================
   ARTWORK GRID
========================================================= */

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

    column-gap: 80px;
    row-gap: 40px;

    margin-top: 200px;

    align-items: start;
}

.artwork-card {
    width: 75%;
    text-decoration: none;
    color: inherit;
}

.artwork-card:nth-child(odd) {
    justify-self: center;
    margin-right: 30px;
    margin-top: 0;
}

.artwork-card:nth-child(even) {
    justify-self: center;
    margin-left: 30px;
    margin-top: 180px;
}
/* Bring Artwork 3 onwards closer together */

.artwork-card:nth-child(odd):nth-child(n+3) {
    margin-right: -20px;
}

.artwork-card:nth-child(even):nth-child(n+4) {
    margin-left: -20px;
}
/* =========================================================
   ARTWORK IMAGE
========================================================= */

.artwork-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.artwork-image img {
    display: block;

    width: 100%;
    height: auto;

    opacity: 0;

    transition: opacity .6s ease;
}

.artwork-image img:not(.active) {
    position: absolute;
    inset: 0;
}

.artwork-image img.active {
    opacity: 1;
}

/* =========================================================
   ARTWORK INFO
========================================================= */

.artwork-info {

    margin-top: 22px;
    text-align: center;

}

.artwork-info h3 {

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;

}

.artwork-info p {

    font-size: 14px;
    color: #777;
    margin-bottom: 6px;

}

.artwork-info span {

    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;

}
/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    width: 100%;
    background: #fafafa;
    color: #000;
}


/* =========================================================
   ABOUT GLOBAL TYPOGRAPHY RULES
========================================================= */

/* Small labels */

.about-page .eyebrow {
    margin: 0 0 38px;

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

    letter-spacing: 4px;
    text-transform: uppercase;
}
.about-page .eyebrow .keep-case {
    text-transform: none;
    }
    

/* ALL ABOUT HEADINGS — SAME RULES */

.about-page-intro h1,
.about-editorial-copy h2,
.about-statement blockquote,
.about-collecting-heading h2,
.about-submissions-heading h2 {

    max-width: 620px;

    margin: 0 0 42px;

    font-family: "Inter", sans-serif;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -3px;
}


/* ALL ABOUT BODY TEXT — SAME RULES */

.about-page-intro-copy p,
.about-editorial-copy p,
.about-statement-credit,
.about-collecting-copy p,
.about-submissions-copy p {

    margin: 0 0 24px;

    color: #333;

    font-family: "Inter", sans-serif;

    font-size: 20px;
    font-weight: 300;

    line-height: 1.6;
    letter-spacing: 0;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-page-intro {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto;
    padding: 120px 0 150px;
}

.about-page-intro-copy {
    width: 52%;
    max-width: 720px;

    margin-top: 90px;
    margin-left: auto;
}

.about-page-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT HERO IMAGE
========================================================= */

.about-page-hero {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto 190px;

    overflow: hidden;
}

.about-page-hero img {
    display: block;

    width: 100%;
    height: min(78vh, 900px);
    min-height: 620px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ABOUT EDITORIAL ROWS
========================================================= */

.about-editorial-row {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto 220px;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(500px, 1.28fr);

    gap: 130px;

    align-items: center;
}

.about-editorial-row-reverse {
    grid-template-columns:
        minmax(500px, 1.28fr)
        minmax(300px, 0.72fr);
}

.about-editorial-row-reverse .about-editorial-copy {
    order: 2;
}

.about-editorial-row-reverse .about-editorial-image {
    order: 1;
}


/* =========================================================
   ABOUT EDITORIAL TEXT
========================================================= */

.about-editorial-copy {
    width: 100%;
    max-width: 560px;
}

.about-editorial-copy p:last-of-type {
    margin-bottom: 0;
}

.about-editorial-copy .text-link {
    margin-top: 35px;
}


/* =========================================================
   ABOUT EDITORIAL IMAGES
========================================================= */

.about-editorial-image {
    width: 100%;
    overflow: hidden;
}

.about-editorial-image img {
    display: block;

    width: 100%;
    height: 760px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-editorial-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   ABOUT PHILOSOPHY STATEMENT
========================================================= */

.about-statement {
    width: calc(100% - 80px);
    max-width: 1550px;

    margin: 40px auto 220px;
    padding: 120px 0;

    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.about-statement blockquote {
    max-width: 900px;
}

.about-statement-credit {
    margin-top: 45px;
}


/* =========================================================
   ABOUT WIDE IMAGE
========================================================= */

.about-wide-image {
    width: calc(100% - 160px);
    max-width: 1600px;

    margin: 0 auto 230px;

    overflow: hidden;
}

.about-wide-image img {
    display: block;

    width: 100%;
    height: 720px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   COLLECTING WITH KIN
========================================================= */

.about-collecting {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 20px auto 220px;
    padding-top: 90px;

    border-top: 1px solid #d8d8d8;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 130px;
}

.about-collecting-heading {
    max-width: 620px;
}

.about-collecting-copy {
    width: 100%;
    max-width: 570px;

    padding-top: 40px;
}

.about-collecting-copy p:last-of-type {
    margin-bottom: 0;
}

.about-collecting-copy .text-link {
    margin-top: 32px;
}


/* =========================================================
   ARTIST SUBMISSIONS
========================================================= */

.about-submissions {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto 200px;
    padding: 100px 0;

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 130px;
}

.about-submissions-heading {
    max-width: 620px;
}

.about-submissions-copy {
    width: 100%;
    max-width: 570px;

    padding-top: 40px;
}

.about-submissions-copy p:last-of-type {
    margin-bottom: 0;
}

.about-submissions-copy .text-link {
    margin-top: 32px;
}


/* =========================================================
   ABOUT LINKS
========================================================= */

.about-page .text-link {
    display: inline-block;

    padding-bottom: 6px;

    color: #000;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;

    border-bottom: 1px solid #000;

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

.about-page .text-link:hover {
    opacity: 0.55;
    transform: translateX(3px);
}
/* =========================================================
   SHIPPING & RETURNS PAGE
========================================================= */

.shipping-returns-page {
    width: 100%;

    background: #fafafa;
    color: #000;
}


/* =========================================================
   SHIPPING INTRO
========================================================= */

.shipping-intro {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;
    padding: 120px 0 150px;
}


.shipping-intro .eyebrow {
    margin-bottom: 35px;
}


.shipping-intro h1 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -3px;
}


.shipping-intro-copy {
    width: 52%;
    max-width: 700px;

    margin-top: 80px;
    margin-left: auto;
}


.shipping-intro-copy p {
    margin: 0 0 32px;

    color: #333;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}



/* =========================================================
   INFORMATION SECTIONS
========================================================= */

.shipping-info-section {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;

    padding: 100px 0 130px;

    border-top: 1px solid #d8d8d8;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 130px;

    align-items: start;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.shipping-section-heading {
    max-width: 430px;
}


.shipping-section-heading .eyebrow {
    margin-bottom: 30px;

    color: #777;
}


.shipping-section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -2px;
}



/* =========================================================
   SECTION CONTENT
========================================================= */

.shipping-section-content {
    width: 100%;
    max-width: 690px;
}


.shipping-section-content > p {
    margin: 0 0 26px;

    color: #3a3a3a;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
}


.shipping-section-content .shipping-lead {
    margin-bottom: 55px;

    color: #111;

    font-size: 21px;
    font-weight: 300;
    line-height: 1.55;
}



/* =========================================================
   DETAIL BLOCKS
========================================================= */

.shipping-detail {
    padding: 45px 0;

    border-top: 1px solid #e3e3e3;
}


.shipping-detail:last-of-type {
    padding-bottom: 0;
}


.shipping-detail h3 {
    margin: 0 0 25px;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}


.shipping-detail p {
    margin: 0 0 22px;

    color: #555;

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


.shipping-detail p:last-of-type {
    margin-bottom: 0;
}


.shipping-detail .text-link {
    margin-top: 28px;
}



/* =========================================================
   LISTS
========================================================= */

.shipping-list {
    margin: 10px 0 32px;
    padding: 0;

    list-style: none;
}


.shipping-list li {
    position: relative;

    margin-bottom: 15px;
    padding-left: 20px;

    color: #444;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}


.shipping-list li::before {
    content: "—";

    position: absolute;

    left: 0;
    top: 0;

    color: #777;
}



/* =========================================================
   INLINE EMAIL LINK
========================================================= */

.shipping-inline-link {
    color: #000;

    text-decoration: none;

    border-bottom: 1px solid #999;

    transition: opacity 0.3s ease;
}


.shipping-inline-link:hover {
    opacity: 0.55;
}



/* =========================================================
   IMPORTANT NOTE
========================================================= */

.shipping-important {
    margin-top: 45px !important;
    padding-top: 30px;

    border-top: 1px solid #e3e3e3;

    color: #111 !important;

    font-weight: 400 !important;
}



/* =========================================================
   DAMAGED ARTWORK SECTION
========================================================= */

.shipping-damage-section {
    padding-bottom: 150px;
}



/* =========================================================
   FINAL CONTACT BLOCK
========================================================= */

.shipping-contact {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto 180px;

    padding: 110px 0;

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}


.shipping-contact .eyebrow {
    margin-bottom: 35px;
}


.shipping-contact h2 {
    max-width: 760px;

    margin: 0 0 45px;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}



/* =========================================================
   SHIPPING & RETURNS — TABLET
========================================================= */

@media (max-width: 900px) {

    .shipping-intro {
        width: calc(100% - 40px);

        padding: 90px 0 110px;
    }


    .shipping-intro-copy {
        width: 75%;

        margin-top: 65px;
    }


    .shipping-info-section {
        width: calc(100% - 40px);

        padding: 80px 0 100px;

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .shipping-section-heading {
        max-width: 600px;
    }


    .shipping-section-content {
        max-width: 700px;

        margin-left: auto;
    }


    .shipping-contact {
        width: calc(100% - 40px);

        margin-bottom: 120px;

        padding: 85px 0;
    }

}



/* =========================================================
   SHIPPING & RETURNS — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .shipping-intro {
        width: calc(100% - 32px);

        padding: 70px 0 90px;
    }


    .shipping-intro h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }


    .shipping-intro-copy {
        width: 100%;

        margin-top: 50px;
    }


    .shipping-intro-copy p {
        font-size: 17px;
        line-height: 1.7;
    }


    .shipping-info-section {
        width: calc(100% - 32px);

        padding: 65px 0 85px;

        gap: 45px;
    }


    .shipping-section-heading h2 {
        font-size: 34px;
    }


    .shipping-section-content .shipping-lead {
        margin-bottom: 40px;

        font-size: 19px;
    }


    .shipping-section-content > p,
    .shipping-detail p,
    .shipping-list li {
        font-size: 16px;
    }


    .shipping-detail {
        padding: 38px 0;
    }


    .shipping-contact {
        width: calc(100% - 32px);

        margin-bottom: 90px;

        padding: 70px 0;
    }


    .shipping-contact h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

}
/* =========================================================
   CERTIFICATES OF AUTHENTICITY PAGE
========================================================= */

.coa-page {
    width: 100%;
    background: #fafafa;
    color: #000;
}


/* =========================================================
   COA INTRO
========================================================= */

.coa-intro {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;
    padding: 120px 0 150px;
}

.coa-intro .eyebrow {
    margin-bottom: 35px;
}

.coa-intro h1 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -3px;
}

.coa-intro-copy {
    width: 52%;
    max-width: 700px;

    margin-top: 80px;
    margin-left: auto;
}

.coa-intro-copy p {
    margin: 0 0 26px;

    color: #333;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}


/* =========================================================
   COA INFORMATION SECTIONS
========================================================= */

.coa-info-section {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;

    padding: 100px 0 130px;

    border-top: 1px solid #d8d8d8;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 130px;

    align-items: start;
}


/* =========================================================
   COA SECTION HEADINGS
========================================================= */

.coa-section-heading {
    max-width: 430px;
}

.coa-section-heading .eyebrow {
    margin-bottom: 30px;

    color: #777;
}

.coa-section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================================
   COA CONTENT
========================================================= */

.coa-section-content {
    width: 100%;
    max-width: 690px;
}

.coa-section-content > p {
    margin: 0 0 26px;

    color: #3a3a3a;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
}

.coa-section-content .coa-lead {
    margin-bottom: 55px;

    color: #111;

    font-size: 21px;
    font-weight: 300;
    line-height: 1.55;
}


/* =========================================================
   COA DETAIL BLOCKS
========================================================= */

.coa-detail {
    padding: 45px 0;

    border-top: 1px solid #e3e3e3;
}

.coa-detail:last-of-type {
    padding-bottom: 0;
}

.coa-detail h3 {
    margin: 0 0 25px;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

.coa-detail p {
    margin: 0 0 22px;

    color: #555;

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

.coa-detail p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   COA LISTS
========================================================= */

.coa-list {
    margin: 10px 0 32px;
    padding: 0;

    list-style: none;
}

.coa-list li {
    position: relative;

    margin-bottom: 15px;
    padding-left: 20px;

    color: #444;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.coa-list li::before {
    content: "—";

    position: absolute;

    left: 0;
    top: 0;

    color: #777;
}


/* =========================================================
   NOTE FROM KIN
========================================================= */

.coa-note {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto 180px;

    padding: 110px 0;

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.coa-note .eyebrow {
    margin-bottom: 35px;
}

.coa-note h2 {
    max-width: 760px;

    margin: 0 0 40px;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}

.coa-note > p {
    max-width: 760px;

    margin: 0 0 35px;

    color: #333;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}


/* =========================================================
   COA — TABLET
========================================================= */

@media (max-width: 900px) {

    .coa-intro {
        width: calc(100% - 40px);

        padding: 90px 0 110px;
    }

    .coa-intro-copy {
        width: 75%;

        margin-top: 65px;
    }

    .coa-info-section {
        width: calc(100% - 40px);

        padding: 80px 0 100px;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .coa-section-heading {
        max-width: 600px;
    }

    .coa-section-content {
        max-width: 700px;

        margin-left: auto;
    }

    .coa-note {
        width: calc(100% - 40px);

        margin-bottom: 120px;

        padding: 85px 0;
    }

}


/* =========================================================
   COA — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .coa-intro {
        width: calc(100% - 32px);

        padding: 70px 0 90px;
    }

    .coa-intro h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .coa-intro-copy {
        width: 100%;

        margin-top: 50px;
    }

    .coa-intro-copy p {
        font-size: 17px;
        line-height: 1.7;
    }

    .coa-info-section {
        width: calc(100% - 32px);

        padding: 65px 0 85px;

        gap: 45px;
    }

    .coa-section-heading h2 {
        font-size: 34px;
    }

    .coa-section-content .coa-lead {
        margin-bottom: 40px;

        font-size: 19px;
    }

    .coa-section-content > p,
    .coa-detail p,
    .coa-list li {
        font-size: 16px;
    }

    .coa-detail {
        padding: 38px 0;
    }

    .coa-note {
        width: calc(100% - 32px);

        margin-bottom: 90px;

        padding: 70px 0;
    }

    .coa-note h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .coa-note > p {
        font-size: 17px;
    }

}
/* =========================================================
   PAYMENT OPTIONS PAGE
========================================================= */

.payment-options-page {
    width: 100%;
    background: #fafafa;
    color: #000;
}


/* =========================================================
   PAYMENT INTRO
========================================================= */

.payment-intro {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;
    padding: 120px 0 150px;
}

.payment-intro .eyebrow {
    margin-bottom: 35px;
}

.payment-intro h1 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -3px;
}

.payment-intro-copy {
    width: 52%;
    max-width: 700px;

    margin-top: 80px;
    margin-left: auto;
}

.payment-intro-copy p {
    margin: 0;

    color: #333;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}


/* =========================================================
   PAYMENT INFORMATION SECTION
========================================================= */

.payment-info-section {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;

    padding: 100px 0 130px;

    border-top: 1px solid #d8d8d8;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 130px;

    align-items: start;
}


/* =========================================================
   PAYMENT SECTION HEADING
========================================================= */

.payment-section-heading {
    max-width: 430px;
}

.payment-section-heading .eyebrow {
    margin-bottom: 30px;

    color: #777;
}

.payment-section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================================
   PAYMENT CONTENT
========================================================= */

.payment-section-content {
    width: 100%;
    max-width: 690px;
}

.payment-section-content > p {
    margin: 0 0 26px;

    color: #3a3a3a;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
}

.payment-section-content .payment-lead {
    margin-bottom: 35px;

    color: #111;

    font-size: 21px;
    font-weight: 300;
    line-height: 1.55;
}


/* =========================================================
   PAYMENT DETAIL
========================================================= */

.payment-detail {
    margin-top: 50px;
    padding: 45px 0;

    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.payment-detail h3 {
    margin: 0 0 25px;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}


/* =========================================================
   PAYMENT LIST
========================================================= */

.payment-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.payment-list li {
    position: relative;

    margin-bottom: 15px;
    padding-left: 20px;

    color: #444;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.payment-list li:last-child {
    margin-bottom: 0;
}

.payment-list li::before {
    content: "—";

    position: absolute;

    left: 0;
    top: 0;

    color: #777;
}


/* =========================================================
   INLINE EMAIL
========================================================= */

.payment-inline-link {
    color: #000;

    text-decoration: none;

    border-bottom: 1px solid #999;

    transition: opacity 0.3s ease;
}

.payment-inline-link:hover {
    opacity: 0.55;
}


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

.payment-contact {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto 180px;

    padding: 110px 0;

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.payment-contact .eyebrow {
    margin-bottom: 35px;
}

.payment-contact h2 {
    max-width: 760px;

    margin: 0 0 45px;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}


/* =========================================================
   PAYMENT OPTIONS — TABLET
========================================================= */

@media (max-width: 900px) {

    .payment-intro {
        width: calc(100% - 40px);

        padding: 90px 0 110px;
    }

    .payment-intro-copy {
        width: 75%;

        margin-top: 65px;
    }

    .payment-info-section {
        width: calc(100% - 40px);

        padding: 80px 0 100px;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .payment-section-heading {
        max-width: 600px;
    }

    .payment-section-content {
        max-width: 700px;

        margin-left: auto;
    }

    .payment-contact {
        width: calc(100% - 40px);

        margin-bottom: 120px;

        padding: 85px 0;
    }

}


/* =========================================================
   PAYMENT OPTIONS — SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .payment-intro {
        width: calc(100% - 32px);

        padding: 70px 0 90px;
    }

    .payment-intro h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .payment-intro-copy {
        width: 100%;

        margin-top: 50px;
    }

    .payment-intro-copy p {
        font-size: 17px;
        line-height: 1.7;
    }

    .payment-info-section {
        width: calc(100% - 32px);

        padding: 65px 0 85px;

        gap: 45px;
    }

    .payment-section-heading h2 {
        font-size: 34px;
    }

    .payment-section-content .payment-lead {
        font-size: 19px;
    }

    .payment-section-content > p,
    .payment-list li {
        font-size: 16px;
    }

    .payment-detail {
        padding: 38px 0;
    }

    .payment-contact {
        width: calc(100% - 32px);

        margin-bottom: 90px;

        padding: 70px 0;
    }

    .payment-contact h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

}
/* =========================================================
   AVAILABLE WORKS PAGE
========================================================= */

.available-page-intro {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto;
    padding: 120px 0 80px;
}

.available-page-intro .eyebrow {
    margin-bottom: 38px;
}

.available-page-intro h1 {
    margin: 0;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   AVAILABLE WORKS CATEGORIES
========================================================= */

.available-categories {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto 160px;

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

    gap: 30px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.available-category {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    display: block;

    overflow: hidden;

    background: #eeeeee;

    color: #fff;
    text-decoration: none;
}


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.available-category img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CATEGORY OVERLAY
========================================================= */

.available-category-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

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

    padding: 40px;

    background: rgba(0, 0, 0, 0.16);

    transition:
        background 0.4s ease;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.available-category-overlay h2 {
    max-width: 80%;

    margin: 0;

    color: #fff;

    font-family: "Inter", sans-serif;

    font-size: clamp(34px, 3.5vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.5px;

    text-align: center;
}


/* =========================================================
   HOVER
========================================================= */

.available-category:hover img {
    transform: scale(1.025);
}

.available-category:hover .available-category-overlay {
    background: rgba(0, 0, 0, 0.08);
}


/* =========================================================
   AVAILABLE WORKS — TABLET
========================================================= */

@media (max-width: 900px) {

    .available-page-intro {
        width: calc(100% - 40px);

        padding: 90px 0 65px;
    }

    .available-categories {
        width: calc(100% - 40px);

        gap: 20px;

        margin-bottom: 120px;
    }

    .available-category-overlay {
        padding: 30px;
    }

    .available-category-overlay h2 {
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -2px;
    }

}


/* =========================================================
   AVAILABLE WORKS — MOBILE
========================================================= */

@media (max-width: 560px) {

    .available-page-intro {
        width: calc(100% - 32px);

        padding: 70px 0 55px;
    }

    .available-page-intro h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .available-categories {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 90px;
    }

    .available-category-overlay h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

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

@media (max-width: 900px) {
.artist-profile-intro {
    width: calc(100% - 40px);
    padding: 100px 0 120px;

    grid-template-columns: 1fr;
    gap: 60px;
}

.artist-profile-heading h1 {
    font-size: 68px;
    letter-spacing: -3px;
}

.artist-biography p {
    font-size: 17px;
}
    /* Header */

    .main-navigation {
        height: auto;

        padding: 25px;

        flex-direction: column;

        gap: 25px;
    }

    .navigation-links {
        flex-wrap: wrap;
        justify-content: center;

        gap: 18px 22px;
    }

    .navigation-links li a {
        font-size: 12px;
    }


    /* Homepage hero */

    .hero {
        width: calc(100% - 40px);
        min-height: auto;

        margin: 35px auto 110px;

        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 500px;
    }

    .hero-image > img {
        height: 500px;
    }

    .hero-text {
        padding: 55px 35px 65px;
    }

    .hero-text h1 {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .hero-text h2 {
        font-size: 15px;
    }


    /* Homepage featured artists */

    .editorial-artists {
        grid-template-columns: 1fr;

        gap: 55px;

        margin-bottom: 110px;
        padding: 0 20px;
    }

    .artists-intro p {
        max-width: 500px;
    }

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

        column-gap: 20px;
        row-gap: 55px;
    }

    .editorial-artist-card h3 {
        margin-top: 14px;

        font-size: 15px;
    }

    .editorial-artist-card:hover,
    .editorial-artist-card:focus-visible,
    .editorial-artist-card.is-selected {
        transform: translateY(-8px) scale(1.02);
    }


    /* Exhibition */

    .exhibition {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 70px 20px;
    }

    .exhibition-image img {
        height: 360px;
    }


    /* Available works */

    .available-works {
        padding: 0 20px;
    }

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

        gap: 55px 20px;
    }

    .work-card {
        padding-right: 0;
    }


    /* Artists page */

    .artists-page-intro {
        margin: 70px auto 65px;
        padding: 0 20px;
    }

    .artists-page-intro h1 {
        letter-spacing: -2px;
    }

    .artists-directory {
        margin-bottom: 110px;
        padding: 0 20px;
    }

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

        column-gap: 20px;
        row-gap: 60px;
    }

    .directory-artist-info {
        flex-direction: column;

        gap: 8px;
    }

    .directory-artist-info p {
        text-align: left;
    }


    /* Footer */

    .site-footer {
        padding: 60px 25px 30px;
    }

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

        gap: 55px 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

}


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

@media (max-width: 560px) {
.artist-profile-intro {
    width: calc(100% - 40px);
    padding: 75px 0 90px;
    gap: 45px;
}

.artist-profile-heading h1 {
    font-size: 46px;
    letter-spacing: -2px;
}

.artist-biography p {
    font-size: 16px;
    line-height: 1.75;
}
    /* Header */

    .main-navigation {
        align-items: flex-start;
    }

    .navigation-links {
        justify-content: flex-start;
    }


    /* Homepage hero */

    .hero {
        width: calc(100% - 24px);

        margin-top: 20px;
    }

    .hero-image {
        min-height: 390px;
    }

    .hero-image > img {
        height: 390px;
    }

    .hero-text {
        padding: 45px 22px 55px;
    }

    .hero-text .eyebrow {
        margin-bottom: 22px;
    }

    .hero-text h1 {
        margin-bottom: 22px;

        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-text h2 {
        line-height: 1.65;
    }

    .hero-button {
        padding: 15px 20px;
    }


    /* Homepage featured artists */

    .artists-intro h2 {
        font-size: 27px;
    }

    .editorial-artist-grid {
        grid-template-columns: 1fr;

        row-gap: 50px;
    }


    /* Exhibition */

    .exhibition-text h2 {
        font-size: 35px;
    }


    /* Available works */

    .section-header {
        align-items: flex-start;

        gap: 20px;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-card img,
    .browse-card {
        height: 360px;
    }


    /* Philosophy */

    .philosophy {
        padding: 0 20px;
    }

    .philosophy h2 {
        font-size: 27px;
    }


    /* Artists page */

    .artists-page-intro h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .artists-page-description {
        font-size: 16px;
    }

    .artists-directory-grid {
        grid-template-columns: 1fr;

        row-gap: 55px;
    }

    .directory-artist-info {
        padding-top: 16px;
    }

    .directory-artist-info h2 {
        font-size: 18px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 8px;
    }

}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}
/* =========================================================
   KIN — FINAL MOBILE OVERRIDES
   Phones only
========================================================= */

@media (max-width: 600px) {

    /* =====================================================
   MOBILE HEADER — CLEAN VERSION
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
}

.main-navigation {
    position: relative;

    width: 100%;
    height: auto;

    padding: 20px 20px 18px;

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

    gap: 22px;
}


/* LOGO */

.brand {
    width: 100%;
}

.logo {
    width: 72px;
}


/* NAVIGATION */

.navigation-links {
    width: 100%;

    display: flex;
    flex-wrap: nowrap;

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

    gap: 0;

    padding: 0;
}


/* NAVIGATION TEXT */

.navigation-links li a {
    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.15px;

    white-space: nowrap;
}


/* SEARCH + SHOPPING BAG
   move them beside the logo */

.navigation-links li:nth-last-child(2),
.navigation-links li:last-child {
    position: absolute;
    top: 36px;
}

.navigation-links li:nth-last-child(2) {
    right: 54px;
}

.navigation-links li:last-child {
    right: 20px;
}

.navigation-links li a.icon-link {
    font-size: 17px;
}

    /*
       SEARCH + CART
       move to top-right beside logo
    */

    .navigation-links li:nth-last-child(2),
    .navigation-links li:last-child {
        position: absolute;
        top: 35px;
    }

    .navigation-links li:nth-last-child(2) {
        right: 53px;
    }

    .navigation-links li:last-child {
        right: 20px;
    }

    .navigation-links li a.icon-link {
        font-size: 16px;
    }


    /* =====================================================
       HOMEPAGE — DRIFT
    ===================================================== */

    .hero {
        width: calc(100% - 32px);

        margin: 28px auto 90px;

        display: flex;
        flex-direction: column;
    }

    .hero-image {
        width: 100%;

        min-height: 0;
        height: auto;

        overflow: visible;
    }

    .hero-image > img {
        width: 100%;
        height: auto;

        object-fit: contain;

        display: block;
    }

    .hero-text {
        padding: 28px 16px 35px;

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

    /* FIX FEDERICO BONI BEING CROPPED */

    .hero-artist {
        margin: 0 0 18px;

        position: static;

        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero-text h1 {
        margin: 0 0 22px;

        left: 0;

        font-size: 48px;
        line-height: 0.95;
        letter-spacing: -2px;
    }

    .hero-date {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-description {
        display: none;
    }

    .hero-button {
        margin-top: 32px;

        padding: 16px 22px;

        font-size: 9px;
        letter-spacing: 2px;
    }


    /* =====================================================
       HOMEPAGE — AVAILABLE WORKS
       KEEP ORIGINAL ARTWORK RATIO
    ===================================================== */

    .available-works {
        padding: 0 20px;
    }

    .works-grid {
        display: grid;
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .work-card {
        width: 100%;
        padding: 0;
    }

    .work-image-link {
        width: 100%;
        height: auto;

        display: block;

        overflow: visible;
    }

    .work-card img,
    .work-image-link img {
        width: 100%;
        height: auto !important;

        max-height: none;

        object-fit: contain;

        display: block;
    }

    .browse-card {
        height: 300px;
    }


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

    .artists-page-intro {
        margin: 55px auto 55px;
        padding: 0 20px;
    }

    .artists-list {
        width: 100%;

        margin: 0 auto 90px;
        padding: 0 20px;

        display: grid;

        /* two artists per row */
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 18px;
        row-gap: 48px;
    }

    .artist-row {
        width: 100%;
    }

    /*
       Every portrait now has exactly
       the same dimensions
    */

    .artist-row-image {
        width: 100%;
        aspect-ratio: 4 / 5;

        margin-bottom: 15px;

        overflow: hidden;
        background: #eee;
    }

    .artist-row-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .artist-row h2 {
        font-size: 17px;
        line-height: 1.15;
        letter-spacing: -0.3px;
    }


    /* =====================================================
       INDIVIDUAL ARTIST PAGE — HERO
    ===================================================== */

    .artist-page-hero {
        width: 100%;

        height: auto;
        min-height: 0;

        overflow: visible;
    }

    .artist-page-hero img {
        width: 100%;
        height: auto;

        object-fit: contain;

        display: block;
    }

    .artist-page-hero-title {
        padding: 20px;
    }

    .artist-page-hero-title h1 {
        font-size: 38px;
        line-height: 1;
        letter-spacing: -2px;
    }


    /* =====================================================
       INDIVIDUAL ARTIST — BIO
    ===================================================== */

    .artist-page-biography {
        width: calc(100% - 40px);

        margin: 0 auto;

        padding: 60px 0 65px;
    }

    .artist-page-biography p {
        font-size: 15px;
        line-height: 1.7;

        margin-bottom: 20px;
    }


    /* =====================================================
       INDIVIDUAL ARTIST — STATEMENT
    ===================================================== */

    .artist-statement {
        width: calc(100% - 40px);

        margin: 0 auto;

        padding: 20px 0 70px;

        display: grid;
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .artist-statement-image {
        width: 100%;
        gap: 20px;
    }

    .artist-statement-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

    .artist-statement-text {
        width: 100%;
    }


    /* =====================================================
       ARTIST — SELECTED WORKS
       remove huge empty space
    ===================================================== */

    .selected-works {
        width: calc(100% - 40px);

        margin: 0 auto;
        padding-top: 30px;
    }

    .selected-works-header {
        margin-bottom: 45px;
    }

    .artwork-grid {
        width: 100%;

        margin-top: 0;

        display: grid;
        grid-template-columns: 1fr;

        row-gap: 65px;
    }

    /*
       Reset staggered desktop layout
    */

    .artwork-card,
    .artwork-card:nth-child(odd),
    .artwork-card:nth-child(even),
    .artwork-card:nth-child(odd):nth-child(n+3),
    .artwork-card:nth-child(even):nth-child(n+4) {

        width: 100%;

        margin: 0;

        justify-self: stretch;
    }

    .artwork-image {
        width: 100%;

        overflow: visible;
    }

    .artwork-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }

    .artwork-info {
        margin-top: 18px;
    }


    /* =====================================================
       ABOUT PAGE
       DO NOT CROP PHOTOS
    ===================================================== */

    .about-page-intro {
        width: calc(100% - 40px);

        padding: 65px 0 80px;
    }

    .about-page-intro-copy {
        width: 100%;

        margin-top: 50px;
        margin-left: 0;
    }

    /*
       MAIN ABOUT IMAGE
    */

    .about-page-hero {
        width: calc(100% - 40px);

        margin: 0 auto 90px;

        overflow: visible;
    }

    .about-page-hero img {
        width: 100%;

        height: auto;
        min-height: 0;

        object-fit: contain;

        display: block;
    }


    /*
       TEXT + IMAGE SECTIONS
    */

    .about-editorial-row,
    .about-editorial-row-reverse {
        width: calc(100% - 40px);

        margin: 0 auto 100px;

        display: flex;
        flex-direction: column;

        gap: 45px;
    }

    .about-editorial-row-reverse .about-editorial-copy,
    .about-editorial-row-reverse .about-editorial-image {
        order: initial;
    }

    .about-editorial-copy {
        width: 100%;
        max-width: none;
    }

    .about-editorial-image {
        width: 100%;

        overflow: visible;
    }

    .about-editorial-image img {
        width: 100%;

        height: auto;

        object-fit: contain;

        display: block;
    }


    /*
       WIDE KELLY + FEDERICO IMAGE
    */

    .about-wide-image {
        width: calc(100% - 40px);

        margin-left: auto;
        margin-right: auto;

        overflow: visible;
    }

    .about-wide-image img {
        width: 100%;
        height: auto;

        object-fit: contain;

        display: block;
    }


    /* ABOUT TYPOGRAPHY */

    .about-page-intro h1,
    .about-editorial-copy h2,
    .about-collecting-heading h2,
    .about-submissions-heading h2 {
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -2px;
    }

    .about-page-intro-copy p,
    .about-editorial-copy p,
    .about-collecting-copy p,
    .about-submissions-copy p {
        font-size: 16px;
        line-height: 1.7;
    }

}
/* =========================================================
   ORIGINAL ARTWORKS — SHOP PAGE
========================================================= */

.shop-works-page {
    width: 100%;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.shop-works-header {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto;
    padding: 100px 0 55px;

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

    gap: 40px;
}

.shop-works-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-works-heading h1 {
    margin: 0 0 34px;

    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.5px;

    text-transform: uppercase;
}


/* =========================================================
   VIEW AS CONTROLS
========================================================= */

.shop-view-controls {
    display: flex;
    align-items: center;

    gap: 8px;
}

.shop-view-label {
    margin-right: 10px;

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
}


/* BUTTON */

.shop-view-button {
    width: 38px;
    height: 34px;

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

    padding: 0;

    background: transparent;

    border: 1px solid #dddddd;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}

.shop-view-button:hover {
    border-color: #888888;
}

.shop-view-button.active {
    border-color: #111111;
}


/* =========================================================
   VIEW ICONS
========================================================= */

.view-icon {
    width: 24px;
    height: 18px;

    display: grid;

    gap: 3px;
}

.view-icon-3 {
    grid-template-columns: repeat(3, 1fr);
}

.view-icon-4 {
    grid-template-columns: repeat(4, 1fr);
}

.view-icon-5 {
    grid-template-columns: repeat(5, 1fr);
}

.view-icon span {
    width: 100%;
    height: 100%;

    display: block;

    background: #dddddd;
}

.shop-view-button.active .view-icon span {
    background: #222222;
}


/* =========================================================
   FILTER BUTTON — RIGHT SIDE
========================================================= */

.shop-filter-button {
    position: static !important;

    margin: 0 0 2px;

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

    gap: 10px;

    padding: 0;

    border: none;
    background: transparent;

    color: #111;

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;

    cursor: pointer;

    text-transform: none;
}

.shop-filter-button i {
    font-size: 14px;
}

.shop-filter-button:hover {
    opacity: 0.55;
}


/* =========================================================
   SHOP ARTWORK GRID
========================================================= */

.shop-artwork-grid {
    width: calc(100% - 80px);
    max-width: 1800px;

    margin: 0 auto 170px;

    display: grid;

    column-gap: 28px;
    row-gap: 72px;

    align-items: start;
}


/* =========================================================
   COLUMN MODES
========================================================= */

.shop-artwork-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-artwork-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-artwork-grid.columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}


/* =========================================================
   RESET OLD ARTIST PAGE STAGGERING
========================================================= */

.shop-artwork-grid .artwork-card,
.shop-artwork-grid .artwork-card:nth-child(odd),
.shop-artwork-grid .artwork-card:nth-child(even),
.shop-artwork-grid .artwork-card:nth-child(odd):nth-child(n+3),
.shop-artwork-grid .artwork-card:nth-child(even):nth-child(n+4) {

    width: 100%;

    margin: 0;

    justify-self: stretch;
}


/* =========================================================
   ARTWORK CARD
========================================================= */

.shop-artwork-grid .artwork-card {
    display: block;

    color: #111;
    text-decoration: none;

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

.shop-artwork-grid .artwork-card:hover {
    transform: translateY(-3px);
}


/* =========================================================
   ARTWORK IMAGE
========================================================= */

.shop-artwork-grid .artwork-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: transparent;
}


.shop-artwork-grid .artwork-image img {
    width: 100%;
    height: auto;

    display: block;

    opacity: 0;

    background: transparent;

    transition:
        opacity 0.45s ease,
        transform 0.7s ease;
}


/* secondary hover images */

.shop-artwork-grid .artwork-image img:not(.active) {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.shop-artwork-grid .artwork-image img.active {
    position: relative;

    opacity: 1;
}


.shop-artwork-grid .artwork-image img.active {
    opacity: 1;
}


/* subtle hover */

.shop-artwork-grid .artwork-card:hover .artwork-image img.active {
    transform: scale(1.015);
}


/* =========================================================
   ARTWORK INFORMATION
========================================================= */

.shop-artwork-grid .artwork-info {
    margin-top: 18px;

    text-align: left;
}

.shop-artwork-grid .artwork-info h3 {
    margin: 0 0 8px;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;

    text-transform: none;
}

.shop-artwork-grid .artwork-info p {
    margin: 0 0 7px;

    color: #666666;

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

.shop-artwork-grid .artwork-info span {
    display: block;

    margin: 0;

    color: #111111;

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


/* =========================================================
   5 COLUMN VIEW — SLIGHTLY SMALLER TEXT
========================================================= */

.shop-artwork-grid.columns-5 .artwork-info h3 {
    font-size: 13px;
}

.shop-artwork-grid.columns-5 .artwork-info p,
.shop-artwork-grid.columns-5 .artwork-info span {
    font-size: 12px;
}


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

@media (max-width: 1100px) {

    .shop-works-header,
    .shop-artwork-grid {
        width: calc(100% - 50px);
    }

    .shop-works-header {
        padding-top: 80px;
    }

    /*
       On tablet don't allow the grid
       to become too tiny
    */

    .shop-artwork-grid.columns-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-artwork-grid.columns-4,
    .shop-artwork-grid.columns-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


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

@media (max-width: 800px) {

    .shop-works-header {
        align-items: flex-end;

        gap: 25px;
    }

    .shop-works-heading h1 {
        font-size: 38px;

        margin-bottom: 28px;
    }

    .shop-artwork-grid,
    .shop-artwork-grid.columns-3,
    .shop-artwork-grid.columns-4,
    .shop-artwork-grid.columns-5 {

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

        column-gap: 20px;
        row-gap: 55px;
    }

}


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

@media (max-width: 600px) {

    .shop-works-header {
        width: calc(100% - 40px);

        padding: 60px 0 45px;

        display: grid;
        grid-template-columns: 1fr auto;

        align-items: end;

        gap: 30px 20px;
    }

    .shop-works-heading h1 {
        margin-bottom: 25px;

        font-size: 32px;
        letter-spacing: -1.7px;
    }


    /* Hide column selector on phone */

    .shop-view-controls {
        display: none;
    }


    .shop-filter-button {
        align-self: end;

        margin-bottom: 3px;

        font-size: 11px;
    }


    /* One artwork per row */

    .shop-artwork-grid,
    .shop-artwork-grid.columns-3,
    .shop-artwork-grid.columns-4,
    .shop-artwork-grid.columns-5 {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        row-gap: 60px;

        margin-bottom: 100px;
    }


    .shop-artwork-grid .artwork-info {
        margin-top: 15px;
    }

    .shop-artwork-grid .artwork-info h3 {
        font-size: 15px;
    }

    .shop-artwork-grid .artwork-info p,
    .shop-artwork-grid .artwork-info span {
        font-size: 13px;
    }
    }
/* =========================================================
   ARTWORK GRID — MOBILE
========================================================= */

@media (max-width: 768px) {

    .shop-artwork-grid,
    .shop-artwork-grid.columns-3,
    .shop-artwork-grid.columns-4,
    .shop-artwork-grid.columns-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 8px;
    }

    .shop-artwork-card {
        min-width: 0;
    }

    .shop-artwork-image {
        width: 100%;
    }

    .shop-artwork-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .shop-artwork-info {
        padding-top: 8px;
    }

    .shop-artwork-info h3 {
        font-size: 11px;
        line-height: 1.25;
        margin-bottom: 3px;
    }

    .shop-artwork-info p,
    .shop-artwork-info span {
        font-size: 10px;
        line-height: 1.3;
    }

    .shop-view-controls {
        display: none;
    }

}/* =========================================================
   MINIMAL CONTACT PAGE
========================================================= */

.contact-page-minimal {
    min-height: 100vh;
}


.contact-minimal {
    min-height: calc(100vh - 120px);

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

    padding: 160px 30px 140px;
}


.contact-minimal-inner {
    width: 100%;
    max-width: 620px;

    text-align: center;
}


/* TITLE */

.contact-minimal h1 {
    margin: 0 0 32px;

    font-size: 35px;
    font-weight: 500;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* INTRO */

.contact-minimal-intro {
    max-width: 470px;

    margin: 0 auto 48px;

    font-size: 16px;
    font-weight: 300;

    line-height: 1.7;

    color: #555;
}


/* CONTACT DETAILS */

.contact-minimal-details {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-bottom: 70px;
}


.contact-minimal-details a {
    color: #111;

    font-size: 15px;
    font-weight: 300;

    text-decoration: none;

    transition: opacity 0.25s ease;
}


.contact-minimal-details a:hover {
    opacity: 0.5;
}


/* FORM */

.contact-minimal-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 28px;
}


.contact-minimal-form input,
.contact-minimal-form textarea {
    width: 100%;

    padding: 10px 0 14px;

    border: none;
    border-bottom: 1px solid #c9c9c9;

    background: transparent;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 300;

    color: #111;

    outline: none;

    border-radius: 0;
}


.contact-minimal-form input::placeholder,
.contact-minimal-form textarea::placeholder {
    color: #777;
}


.contact-minimal-form input:focus,
.contact-minimal-form textarea:focus {
    border-bottom-color: #111;
}


.contact-minimal-form textarea {
    resize: none;
}


/* BUTTON */

.contact-minimal-form button {
    align-self: center;

    margin-top: 18px;

    padding: 15px 34px;

    border: 1px solid #111;

    background: #111;

    color: #fff;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.14em;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.contact-minimal-form button:hover {
    background: transparent;

    color: #111;
}


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

@media (max-width: 768px) {

    .contact-minimal {
        padding: 120px 24px 100px;
    }


    .contact-minimal-inner {
        max-width: 100%;
    }


    .contact-minimal-intro {
        font-size: 15px;
    }


    .contact-minimal-details {
        margin-bottom: 55px;
    }

}
/* =========================================================
   SINGLE ARTWORK PAGE
========================================================= */

.single-artwork-page {
    width: 100%;
}


/* =========================================================
   MAIN ARTWORK
========================================================= */

.single-artwork {
    width: calc(100% - 90px);
    max-width: 1800px;

    margin: 75px auto 180px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(340px, 0.65fr);

    gap: 90px;

    align-items: start;
}


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

.single-artwork-gallery {
    min-width: 0;

    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);

    gap: 22px;

    align-items: start;
}


/* THUMBNAILS */

.artwork-thumbnails {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.artwork-thumbnail {
    width: 82px;

    padding: 0;

    border: 1px solid transparent;

    background: transparent;

    cursor: pointer;

    opacity: 0.55;

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


.artwork-thumbnail img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}


.artwork-thumbnail:hover {
    opacity: 0.85;
}


.artwork-thumbnail.active {
    opacity: 1;

    border-color: #111;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.single-artwork-main-image {
    width: 100%;

    min-height: 650px;

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

    background: transparent;

    overflow: hidden;
}


.single-artwork-main-image img {
    width: 100%;
    height: auto;

    max-height: 820px;

    object-fit: contain;

    transition:
        opacity 0.25s ease,
        transform 0.6s ease;
}


.single-artwork-main-image img.is-changing {
    opacity: 0;
}


/* =========================================================
   ARTWORK DETAILS
========================================================= */

.single-artwork-details {
    padding-top: 20px;

    position: sticky;
    top: 150px;
}


.single-artwork-artist {
    display: inline-block;

    margin-bottom: 22px;

    color: #111;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.12em;

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


.single-artwork-artist:hover {
    opacity: 0.55;
}


.single-artwork-details h1 {
    margin: 0 0 28px;

    font-size: 34px;
    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.single-artwork-meta {
    margin-bottom: 33px;
}


.single-artwork-meta p {
    margin-bottom: 8px;

    color: #444;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.5;
}


.single-artwork-price {
    margin-bottom: 35px;

    font-size: 18px;
    font-weight: 400;
}


/* =========================================================
   BUY BUTTON
========================================================= */

.single-artwork-purchase {
    margin-bottom: 36px;
}


.single-artwork-buy-button {
    width: 100%;

    padding: 18px 25px;

    border: 1px solid #111;

    background: #111;

    color: #fff;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.14em;

    cursor: pointer;

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


.single-artwork-buy-button:hover {
    background: transparent;

    color: #111;
}


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

.single-artwork-services {
    padding: 27px 0;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.single-artwork-services p {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 13px;

    color: #333;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.45;
}


.single-artwork-services p:last-child {
    margin-bottom: 0;
}


.single-artwork-services i {
    width: 16px;

    font-size: 13px;
}


/* =========================================================
   ENQUIRY
========================================================= */

.single-artwork-enquiry {
    padding-top: 30px;
}


.single-artwork-enquiry p {
    display: inline;

    color: #555;

    font-size: 13px;
    font-weight: 300;
}


.single-artwork-enquiry a {
    margin-left: 4px;

    color: #111;

    font-size: 13px;

    text-decoration: none;

    border-bottom: 1px solid #111;
}


/* =========================================================
   YOU MAY ALSO LIKE
========================================================= */

.artwork-recommendations {
    width: calc(100% - 90px);
    max-width: 1800px;

    margin: 0 auto 190px;
}


.artwork-recommendations-header {
    margin-bottom: 55px;

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


.artwork-recommendations-header h2 {
    font-size: 21px;
    font-weight: 400;

    letter-spacing: -0.02em;
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.recommendation-controls {
    display: flex;

    gap: 24px;
}


.recommendation-controls button {
    padding: 8px;

    border: none;

    background: transparent;

    color: #111;

    font-size: 20px;

    cursor: pointer;

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


.recommendation-controls button:hover {
    opacity: 0.5;
}


.recommendation-prev:hover {
    transform: translateX(-3px);
}


.recommendation-next:hover {
    transform: translateX(3px);
}


/* =========================================================
   CAROUSEL
========================================================= */

.recommendation-window {
    overflow: hidden;
}


.recommendation-track {
    display: flex;

    gap: 38px;

    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


.recommendation-card {
    flex: 0 0 calc((100% - 114px) / 4);

    color: #111;

    text-decoration: none;
}


.recommendation-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    margin-bottom: 20px;

    overflow: hidden;

    background: #f1f1ef;
}


.recommendation-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.recommendation-card:hover .recommendation-image img {
    transform: scale(1.025);
}


.recommendation-info h3 {
    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 500;

    text-transform: uppercase;
}


.recommendation-info p {
    margin-bottom: 7px;

    color: #777;

    font-size: 13px;
    font-weight: 300;
}


.recommendation-info span {
    font-size: 13px;
    font-weight: 400;
}



/* =========================================================
   SINGLE ARTWORK — TABLET
========================================================= */

@media (max-width: 1100px) {

    .single-artwork {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(300px, 0.8fr);

        gap: 50px;
    }


    .single-artwork-gallery {
        grid-template-columns: 65px minmax(0, 1fr);

        gap: 15px;
    }


    .artwork-thumbnail {
        width: 65px;
    }


    .single-artwork-main-image {
        min-height: 500px;
    }


    .recommendation-card {
        flex: 0 0 calc((100% - 76px) / 3);
    }

}



/* =========================================================
   SINGLE ARTWORK — MOBILE
========================================================= */

@media (max-width: 768px) {

    .single-artwork {
        width: calc(100% - 40px);

        margin: 35px auto 110px;

        display: block;
    }


    .single-artwork-gallery {
        display: flex;
        flex-direction: column;
    }


    .single-artwork-main-image {
        order: 1;

        min-height: 0;
    }


    .single-artwork-main-image img {
        max-height: none;
    }


    .artwork-thumbnails {
        order: 2;

        margin-top: 14px;

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

        gap: 9px;
    }


    .artwork-thumbnail {
        width: 100%;
    }


    .single-artwork-details {
        margin-top: 55px;

        padding-top: 0;

        position: static;
    }


    .single-artwork-details h1 {
        font-size: 28px;
    }


    .artwork-recommendations {
        width: calc(100% - 40px);

        margin-bottom: 110px;
    }


    .artwork-recommendations-header {
        margin-bottom: 35px;
    }


    .artwork-recommendations-header h2 {
        font-size: 17px;
    }


    .recommendation-track {
        gap: 18px;
    }


    .recommendation-card {
        flex: 0 0 78%;
    }

}
/* =========================================================
   KIN CONTEMPORARY — SITE SEARCH
========================================================= */

.site-search {
    position: fixed;

    top: 115px;
    left: 0;

    width: 100%;
    max-height: calc(100vh - 115px);

    z-index: 1200;

    background: #fff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #dddddd;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

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

    overflow-y: auto;
}


.site-search.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.site-search-inner {
    width: calc(100% - 90px);
    max-width: 1500px;

    margin: 0 auto;

    padding: 55px 0 65px;
}


/* =========================================================
   SEARCH TOP
========================================================= */

.site-search-top {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 30px;

    border-bottom: 1px solid #111;
}


.site-search-input-wrap {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 20px;
}


.site-search-input-wrap i {
    font-size: 20px;
}


#site-search-input {
    width: 100%;

    padding: 22px 0;

    border: none;
    outline: none;

    background: transparent;

    color: #111;

    font-family: "Inter", sans-serif;

    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -1.5px;
}


#site-search-input::placeholder {
    color: #aaaaaa;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.site-search-close {
    position: relative;

    width: 36px;
    height: 36px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-shrink: 0;
}


.site-search-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 24px;
    height: 1px;

    background: #111;
}


.site-search-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.site-search-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* =========================================================
   POPULAR SEARCHES
========================================================= */

.site-search-suggestions {
    margin-top: 25px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;
}


.site-search-suggestions > span {
    margin-right: 8px;

    color: #888;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.site-search-suggestions button {
    padding: 8px 14px;

    border: 1px solid #d8d8d8;

    background: transparent;

    color: #222;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.site-search-suggestions button:hover {
    background: #111;
    color: #fff;

    border-color: #111;
}


/* =========================================================
   SEARCH RESULTS
========================================================= */

.site-search-results {
    margin-top: 42px;
}


.search-results-heading {
    margin-bottom: 22px;

    color: #777;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.search-result {
    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid #eeeeee;

    display: grid;

    grid-template-columns:
        minmax(160px, 1fr)
        180px
        30px;

    gap: 25px;

    align-items: center;

    color: #111;

    text-decoration: none;

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


.search-result:hover {
    opacity: 0.55;

    transform: translateX(4px);
}


.search-result-title {
    font-size: 17px;
    font-weight: 500;

    line-height: 1.3;
}


.search-result-meta {
    color: #888;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.search-result-arrow {
    font-size: 13px;

    text-align: right;
}


.search-no-results {
    padding: 15px 0;

    color: #777;

    font-size: 14px;
}


/* =========================================================
   BACKDROP
========================================================= */

.site-search-backdrop {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;

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


.site-search-backdrop.open {
    opacity: 1;
    visibility: visible;
}


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

@media (max-width: 900px) {

    .site-search {
        top: 0;

        max-height: 100vh;

        z-index: 2000;
    }


    .site-search-inner {
        width: calc(100% - 40px);

        padding: 30px 0 50px;
    }


    #site-search-input {
        font-size: 24px;

        letter-spacing: -0.5px;
    }


    .site-search-top {
        gap: 15px;
    }


    .site-search-input-wrap {
        gap: 13px;
    }


    .site-search-input-wrap i {
        font-size: 16px;
    }


    .site-search-suggestions {
        margin-top: 22px;
    }


    .site-search-suggestions > span {
        width: 100%;

        margin-bottom: 5px;
    }


    .search-result {
        grid-template-columns:
            minmax(0, 1fr)
            24px;

        gap: 15px;

        padding: 17px 0;
    }


    .search-result-meta {
        grid-column: 1;

        margin-top: -8px;
    }


    .search-result-arrow {
        grid-column: 2;
        grid-row: 1 / 3;

        align-self: center;
    }

}
/* JAKEY PEDRO LINK */

.exhibition-text h3 .exhibition-artist-name {
    display: inline;
    margin: 0;
    padding: 0;

    background: transparent;
    color: #000;

    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: inherit;

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

    box-shadow: none;
}

.exhibition-text h3 .exhibition-artist-name:hover {
    background: transparent;
    color: #000;
    box-shadow: none;
    opacity: 0.55;
    transform: none;
}
/* =========================================================
   KIN — ARTIST PAGES MOBILE IMPROVEMENT
   Phones only
========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       MOBILE BIO + STATEMENT ACCORDIONS
    ===================================================== */

    .artist-mobile-accordion {
        width: calc(100% - 40px);
        margin: 0 auto;
        border-top: 1px solid #d8d8d8;
    }

    .artist-mobile-accordion:last-of-type {
        border-bottom: 1px solid #d8d8d8;
    }

    .artist-mobile-toggle {
        width: 100%;
        padding: 22px 0;

        border: 0;
        background: transparent;

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

        color: #000;

        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;

        cursor: pointer;
    }

    .artist-mobile-toggle-icon {
        position: relative;

        width: 14px;
        height: 14px;

        flex: 0 0 14px;
    }

    .artist-mobile-toggle-icon::before,
    .artist-mobile-toggle-icon::after {
        content: "";

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

        background: #000;

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

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

    .artist-mobile-toggle-icon::before {
        width: 14px;
        height: 1px;
    }

    .artist-mobile-toggle-icon::after {
        width: 1px;
        height: 14px;
    }

    .artist-mobile-toggle[aria-expanded="true"]
    .artist-mobile-toggle-icon::after {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }


    /* Hidden by default */

    .artist-mobile-panel {
        display: none;
    }

    .artist-mobile-panel.is-open {
        display: block;
    }


    /* =====================================================
       REMOVE OLD MOBILE BIO SPACING
    ===================================================== */

    .artist-page-biography {
        width: 100%;

        margin: 0;
        padding: 0;
    }

    .artist-page-biography .artist-mobile-panel {
        padding: 15px 0 35px;
    }

    .artist-page-biography p {
        margin-bottom: 20px;

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


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

    .artist-statement {
        width: 100%;

        margin: 0;
        padding: 0;

        display: block;
    }

    .artist-statement .artist-mobile-panel {
        padding: 15px 0 40px;
    }

    .artist-statement-image {
        width: 100%;

        margin-bottom: 35px;

        display: flex;
        flex-direction: column;

        gap: 20px;
    }

    .artist-statement-image img {
        width: 100%;
        height: auto;

        display: block;

        object-fit: contain;
    }

    .artist-statement-text {
        width: 100%;
    }

    .artist-statement-text p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       SELECTED WORKS
    ===================================================== */

    .selected-works {
        width: calc(100% - 40px);

        margin: 55px auto 0;

        padding-top: 0;
    }

    .selected-works-header {
        margin-bottom: 35px;
    }


    /* =====================================================
       TWO ARTWORKS PER ROW
    ===================================================== */

    .artwork-grid {
        width: 100%;

        display: grid;

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

        column-gap: 14px;
        row-gap: 45px;

        margin-top: 0;
    }


    /* Reset desktop staggered positioning */

    .artwork-card,
    .artwork-card:nth-child(odd),
    .artwork-card:nth-child(even),
    .artwork-card:nth-child(odd):nth-child(n+3),
    .artwork-card:nth-child(even):nth-child(n+4) {

        width: 100%;

        margin: 0;

        justify-self: stretch;
    }


    /* Consistent artwork thumbnail */

    .artwork-image {
        width: 100%;

        aspect-ratio: 4 / 5;

        overflow: hidden;

        background: #f1f1f1;
    }

    .artwork-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* Smaller information for 2-column layout */

    .artwork-info {
        margin-top: 13px;

        text-align: center;
    }

    .artwork-info h3 {
        margin-bottom: 5px;

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

    .artwork-info p {
        font-size: 11px;
        line-height: 1.4;
    }

    .artwork-info span {
        margin-top: 6px;

        font-size: 11px;
    }

}
/* =========================================================
   KIN — ARTIST PAGE MOBILE FINAL
   Phones only
========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       BIO + STATEMENT ACCORDION
    ===================================================== */

    .artist-mobile-accordion {
        width: 100%;
        margin: 0;

        border-top: 1px solid #d8d8d8;
    }

    .artist-mobile-accordion:last-of-type {
        border-bottom: 1px solid #d8d8d8;
    }


    /* Give BIO / STATEMENT proper breathing room */

    .artist-mobile-toggle {
        width: 100%;

        padding:
            24px
            24px;

        border: 0;

        background: transparent;
        color: #000;

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

        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;

        text-transform: uppercase;

        cursor: pointer;
    }


    /* Plus / minus - hidden */

    .artist-mobile-toggle-icon {
    display: none;
}
   

    /* =====================================================
       BIO CONTENT
    ===================================================== */

    .artist-page-biography {
        width: 100%;

        margin: 0;
        padding: 0;
    }

    .artist-page-biography
    .artist-mobile-panel {
        padding:
            8px
            24px
            40px;
    }

    .artist-page-biography p {
        margin-bottom: 20px;

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


    /* =====================================================
       ARTIST STATEMENT CONTENT
    ===================================================== */

    .artist-statement {
        width: 100%;

        margin: 0;
        padding: 0;

        display: block;
    }

    .artist-statement
    .artist-mobile-panel {
        padding:
            8px
            24px
            45px;
    }

    .artist-statement-image {
        width: 100%;

        margin-bottom: 35px;

        display: flex;
        flex-direction: column;

        gap: 20px;
    }

    .artist-statement-image img {
        width: 100%;
        height: auto;

        display: block;

        object-fit: contain;
    }

    .artist-statement-text {
        width: 100%;
        max-width: none;

        padding-top: 0;
    }

    .artist-statement-text p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       ORIGINAL ARTWORKS
    ===================================================== */

    .selected-works {
        width: 100%;

        margin: 70px auto 0;

        padding:
            0
            24px;
    }

    .selected-works-header {
        margin-bottom: 55px;

        align-items: center;
    }

    .selected-works-header h2 {
        font-size: 18px;
    }

    .artwork-filter-button {
        top: 0;

        margin-top: 0;
    }


    /* =====================================================
       MOBILE ZIG-ZAG ARTWORK GRID
    ===================================================== */

    .artwork-grid {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 70px;

        margin-top: 0;
    }


    /* Reset all desktop positioning */

    .artwork-card,
    .artwork-card:nth-child(odd),
    .artwork-card:nth-child(even),
    .artwork-card:nth-child(odd):nth-child(n+3),
    .artwork-card:nth-child(even):nth-child(n+4) {

        width: 82%;

        margin: 0;

        justify-self: auto;
    }


    /* Odd artworks align LEFT */

    .artwork-card:nth-child(odd) {
        align-self: flex-start;
    }


    /* Even artworks align RIGHT */

    .artwork-card:nth-child(even) {
        align-self: flex-end;
    }


    /* =====================================================
       PRESERVE REAL ARTWORK RATIO
       NO CROPPING
    ===================================================== */

    .artwork-image {
        width: 100%;

        aspect-ratio: auto;

        overflow: visible;

        background: transparent;
    }

    .artwork-image img,
    .artwork-image img.active {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    /* =====================================================
       ARTWORK INFORMATION
    ===================================================== */

    .artwork-info {
        margin-top: 16px;

        text-align: center;
    }

    .artwork-info h3 {
        margin-bottom: 6px;

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

    .artwork-info p {
        font-size: 13px;
        line-height: 1.4;
    }

    .artwork-info span {
        margin-top: 7px;

        font-size: 13px;
    }

}
/* =========================================================
   HOMEPAGE EXHIBITION IMAGE — MOBILE FULL IMAGE
========================================================= */

@media (max-width: 600px) {

    .exhibition-image {
        width: 100%;
        overflow: visible;
    }

    .exhibition-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

}