```css
/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================================
   BODY
================================ */

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f8f7f3;
}


/* ================================
   HEADER
================================ */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 7%;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 1px;
}

.logo span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    color: #777;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
}

nav a:hover {
    color: #777;
}


/* ================================
   HERO SECTION
================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 7%;
}

.hero-text {
    max-width: 650px;
}

.small-heading {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

h1 {
    font-family: Georgia, serif;
    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.95;
    font-weight: normal;
    margin-bottom: 35px;
}

.intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    background: #222;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    background: #444;
    transform: translateY(-2px);
}


/* ================================
   FEATURED WORKS
================================ */

.featured {
    padding: 100px 7%;
    text-align: center;
}

.featured h2 {
    font-family: Georgia, serif;
    font-size: 45px;
    font-weight: normal;
}

.section-description {
    margin-top: 15px;
    color: #666;
}

.gallery {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.artwork {
    overflow: hidden;
}

.artwork img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.artwork:hover img {
    transform: scale(1.03);
}

.artwork h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 8px;
}

.artwork p {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.artwork .price {
    color: #222;
    font-weight: bold;
    margin-top: 10px;
}


/* ================================
   ABOUT SECTION
================================ */

.about {
    padding: 140px 7%;
    background: #eeece6;
}

.about-text {
    max-width: 720px;
    margin: auto;
    text-align: center;
}

.about .small-heading {
    margin-bottom: 20px;
}

.about h2 {
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: normal;
    margin: 15px 0 40px;
}

.about p:not(.small-heading) {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}

.about-text {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-family: Georgia, serif;
    font-size: 55px;
    font-weight: normal;
    margin: 20px 0 35px;
}

.about p:not(.small-heading) {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}


/* ================================
   GALLERY PAGE
================================ */

.gallery-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 7%;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-heading h1 {
    font-family: Georgia, serif;
    font-size: 70px;
    font-weight: normal;
    margin: 20px 0;
}

.gallery-heading p:not(.small-heading) {
    color: #666;
    font-size: 17px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.gallery-item {
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item a {
    display: block;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 8px;
}

.gallery-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.gallery-item .gallery-price {
    color: #222;
    font-weight: bold;
    margin-top: 10px;
}


/* ================================
   GALLERY FILTERS
================================ */

.filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #222;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter-btn:hover {
    background: #222;
    color: white;
}

.filter-btn.active {
    background: #222;
    color: white;
}


/* ================================
   SOLD BADGE
================================ */

.gallery-image {
    position: relative;
    overflow: hidden;
}

.sold-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #222;
    color: white;
    padding: 7px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    z-index: 2;
}


/* ================================
   ARTWORK DETAIL PAGE
================================ */

.artwork-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 7%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.artwork-image img {
    width: 100%;
    display: block;
    border: 1px solid #e5e5e5;
}

.artwork-details h1 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 12px;
}

.artwork-details .medium {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.artwork-details .description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 450px;
}

.artwork-details .details {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 30px;
}

.artwork-details .details p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.buy-section {
    margin-top: 30px;
}

.artwork-details .price {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}


/* ================================
   BACK TO GALLERY
================================ */

.back-to-gallery {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-gallery:hover {
    color: #000;
}


/* ================================
   WHATSAPP / ENQUIRY BUTTON
================================ */

.whatsapp-button {
    display: inline-block;
    padding: 14px 24px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background: #555;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 40px 7%;
    text-align: center;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #777;
}


/* ================================
   TABLET / MOBILE
================================ */

@media (max-width: 768px) {
        .contact {
        padding: 80px 5%;
    }

    .contact h2 {
        font-size: 42px;
    }

    header {
        padding: 20px 5%;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 18px;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 5%;
    }

    h1 {
        font-size: 55px;
    }

    .featured {
        padding: 70px 5%;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-page {
        padding: 60px 5%;
    }

    .gallery-heading {
        margin-bottom: 50px;
    }

    .gallery-heading h1 {
        font-size: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .artwork-page {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 50px auto;
        padding: 0 5%;
    }

    .artwork-details h1 {
        font-size: 32px;
    }

    .artwork-details .description {
        font-size: 15px;
        line-height: 1.7;
    }

    .artwork-details .price {
        font-size: 24px;
    }

    .whatsapp-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .about {
        padding: 80px 5%;
    }

    .about h2 {
        font-size: 42px;
    }
}


/* ================================
   SMALL PHONES
================================ */

@media (max-width: 600px) {

    .filters {
        gap: 8px;
        margin: 30px 10px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .gallery-heading h1 {
        font-size: 45px;
    }

    h1 {
        font-size: 48px;
    }
}
.about-mediums {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #d5d2ca;
}

.about-mediums .small-heading {
    margin-bottom: 12px;
}

.medium-list {
    font-family: Georgia, serif;
    font-size: 20px;
    color: #333;
}
.about-button {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 28px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-button:hover {
    background: #555;
    transform: translateY(-2px);
}
/* ================================
   CONTACT SECTION
================================ */

.contact {
    padding: 120px 7%;
    text-align: center;
    background: #f8f7f3;
}

.contact-text {
    max-width: 650px;
    margin: 0 auto;
}

.contact h2 {
    font-family: Georgia, serif;
    font-size: 55px;
    font-weight: normal;
    margin: 20px 0 30px;
}

.contact p:not(.small-heading) {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.contact-button {
    display: inline-block;
    padding: 16px 28px;
    background: #222;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background: #555;
    transform: translateY(-2px);
}
.email-link {
    display: block;
    margin-top: 22px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.email-link:hover {
    color: #222;
}
.contact {
    border-top: 1px solid #ddd;
}

.contact-button {
    min-width: 240px;
}

.email-link {
    transition: color 0.3s ease;
}
.gallery-item a {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}
.contact {

    padding: 120px 7%;

    text-align: center;

    background: #f8f7f3;

}


.contact-text {

    max-width: 700px;

    margin: auto;

}


.contact h2 {

    font-family: Georgia, serif;

    font-size: 55px;

    font-weight: normal;

    margin: 20px 0 25px;

}


.contact-text > p:not(.small-heading) {

    font-size: 17px;

    line-height: 1.8;

    color: #555;

    margin-bottom: 35px;

}


.contact-links {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}


.contact-links a {

    display: inline-block;

    padding: 14px 28px;

    background: #222;

    color: white;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 1px;

    transition: background 0.3s ease;

}


.contact-links a:hover {

    background: #555;

}
.back-gallery {
    display: inline-block;
    margin-bottom: 25px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.back-gallery:hover {
    color: #222;
}
@media (max-width: 600px) {

    .about-button,
    .contact-button,
    .email-link {

        display: block;

        width: 100%;

        max-width: 320px;

        margin-left: auto;

        margin-right: auto;

        text-align: center;

        box-sizing: border-box;

    }

    .email-link {

        margin-top: 15px;

    }

}
.available-badge {

    position: absolute;

    top: 15px;

    right: 15px;

    background: #f8f7f3;

    color: #222;

    padding: 7px 12px;

    font-size: 10px;

    letter-spacing: 2px;

    border: 1px solid #222;

    z-index: 2;

}
/* =========================
   VERSION 2 ARTWORK PAGE
========================= */

.artwork-page {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 7%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: start;
}

.artwork-image {
    position: sticky;
    top: 40px;
}

.artwork-image img {
    width: 100%;
    height: auto;
    display: block;
}

.artwork-details {
    padding-top: 20px;
}

.back-gallery {
    display: inline-block;
    margin-bottom: 35px;
    color: #777;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.back-gallery:hover {
    color: #222;
}

.artwork-details .small-heading {
    margin-bottom: 15px;
}

.artwork-details h1 {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1.05;
    font-weight: normal;
    margin: 10px 0 18px;
}

.artwork-details .medium {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.artwork-details .description {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.artwork-details .details {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 35px;
}

.artwork-details .details p {
    margin: 10px 0;
    font-size: 14px;
}

.artwork-details .buy-section {
    margin-top: 30px;
}

.artwork-details .price {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 22px;
}

.whatsapp-button {
    display: inline-block;
    padding: 16px 28px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background: #555;
}


/* Mobile */

@media (max-width: 768px) {

    .artwork-page {
        grid-template-columns: 1fr;
        gap: 45px;
        margin: 60px auto;
        padding: 0 5%;
    }

    .artwork-image {
        position: static;
    }

    .artwork-details {
        padding-top: 0;
    }

    .artwork-details h1 {
        font-size: 42px;
    }

    .whatsapp-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

}
/* =========================
   HOMEPAGE ARTWORK LINKS
========================= */

.artwork-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.artwork-link .artwork {
    cursor: pointer;
}

.artwork-link:hover h3 {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.artwork-link:hover img {
    transform: scale(1.03);
}
/* =========================
   HOMEPAGE AVAILABLE BADGE
========================= */

.home-image {
    position: relative;
    overflow: hidden;
}

.home-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.home-available-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f7f3;
    color: #222;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 2px;
    border: 1px solid #222;
    z-index: 2;
}
/* =========================
   ARTWORK LIGHTBOX
========================= */

.artwork-image img {
    cursor: zoom-in;
}


.lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.9);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;

    z-index: 9999;

}


.lightbox.active {

    display: flex;

}


.lightbox img {

    max-width: 90vw;

    max-height: 90vh;

    width: auto;

    height: auto;

    object-fit: contain;

}


.lightbox-close {

    position: absolute;

    top: 20px;

    right: 30px;

    background: none;

    border: none;

    color: white;

    font-size: 40px;

    font-weight: normal;

    cursor: pointer;

    line-height: 1;

}


.lightbox-close:hover {

    opacity: 0.7;

}
/* =========================
   ARTWORK NAVIGATION
========================= */

.artwork-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.artwork-navigation .back-gallery,
.artwork-navigation .next-artwork {
    color: #777;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.artwork-navigation .back-gallery:hover,
.artwork-navigation .next-artwork:hover {
    color: #222;
}

.next-artwork {
    margin-left: auto;
}

@media (max-width: 600px) {

    .artwork-navigation {
        gap: 10px;
    }

    .artwork-navigation .back-gallery,
    .artwork-navigation .next-artwork {
        font-size: 10px;
        letter-spacing: 1px;
    }

}
/* =========================
   GALLERY AVAILABLE BADGE
========================= */

.available-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f7f3;
    color: #222;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 2px;
    border: 1px solid #222;
    z-index: 2;
}

/* =========================
   GALLERY — REFINED ARTWORK HOVER
========================= */

.gallery-item {
    transition: transform 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-image {
    background: #eeece6;
}

.gallery-image img {
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.025);
}

.gallery-item h3 {
    transition: color 0.3s ease;
}

.gallery-item:hover h3 {
    color: #555;
}
/* =========================
   GALLERY — IMAGE PRESENTATION
========================= */

.gallery-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeece6;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* =========================
   GALLERY — ARTWORK INFORMATION
========================= */

.gallery-item h3 {
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.25;
    margin-top: 22px;
    margin-bottom: 8px;
}

.gallery-item p {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #777;
    margin-bottom: 7px;
}

.gallery-item .gallery-price {
    color: #222;
    font-size: 14px;
    font-weight: normal;
    margin-top: 12px;
    letter-spacing: 0.5px;
}
/* =========================
   GALLERY — REFINED SPACING
========================= */

.gallery-grid {
    column-gap: 35px;
    row-gap: 55px;
}
/* =========================
   GALLERY — HEADING REFINEMENT
========================= */

.gallery-heading {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 55px;
}

.gallery-heading .small-heading {
    margin-bottom: 18px;
    color: #777;
}

.gallery-heading h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    margin-bottom: 20px;
}

.gallery-heading p:not(.small-heading) {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* =========================
   GALLERY — FILTER REFINEMENT
========================= */

.filters {
    margin-top: 0;
    margin-bottom: 60px;
    gap: 10px;
}

.filter-btn {
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
/* =========================
   GALLERY — MOBILE REFINEMENT
========================= */

@media (max-width: 768px) {

    .gallery-page {
        padding-left: 5%;
        padding-right: 5%;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-heading h1 {
        font-size: 48px;
    }

    .gallery-heading p:not(.small-heading) {
        font-size: 15px;
    }

    .gallery-grid {
        column-gap: 0;
        row-gap: 55px;
    }

    .gallery-item h3 {
        font-size: 21px;
        margin-top: 18px;
    }

    .gallery-item p {
        font-size: 13px;
    }

    .filters {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 45px;
    }

    .filter-btn {
        padding: 9px 15px;
    }

}
/* =========================
   HOME — HERO REFINEMENT
========================= */

.hero {
    min-height: 78vh;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-text {
    max-width: 720px;
}

.hero .small-heading {
    color: #777;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(58px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 38px;
}

.hero .intro {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
}

.hero-button {
    margin-top: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
}
/* =========================
   HOME — HERO ARTWORK
========================= */

.hero {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: center;
}

.hero-artwork {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-artwork img {
    width: 100%;
    max-width: 500px;
    max-height: 620px;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

.hero-artwork img:hover {
    transform: scale(1.015);
}


/* =========================
   HERO — MOBILE
========================= */

@media (max-width: 768px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }

    .hero-artwork {
        order: 2;
    }

    .hero-artwork img {
        max-width: 100%;
        max-height: 500px;
    }

}
/* =========================
   HERO — GALLERY PRESENTATION
========================= */

.hero-artwork {
    padding: 20px;
}

.hero-artwork img {
    background: #eeece6;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
/* =========================
   HERO — ARTWORK CAPTION
========================= */

.hero-caption {
    text-align: center;
    margin-top: 18px;
}

.hero-caption h3 {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: normal;
    margin-bottom: 6px;
}

.hero-caption p {
    font-size: 12px;
    color: #777;
    letter-spacing: 0.5px;
}
/* =========================
   HERO — CLICKABLE ARTWORK
========================= */

.hero-artwork-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hero-artwork-link:hover img {
    transform: scale(1.015);
}

.hero-artwork-link:hover .hero-caption h3 {
    color: #555;
}

.hero-caption h3 {
    transition: color 0.3s ease;
}
/* =========================
   FEATURED WORKS — GALLERY LINK
========================= */

.featured-gallery-button {
    display: inline-block;
    margin-top: 55px;
    padding: 14px 28px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.featured-gallery-button:hover {
    background: #222;
    color: #fff;
}
/* =========================
   ABOUT — ARTIST STATEMENT
========================= */

.about-text {
    max-width: 760px;
}

.about h2 {
    font-size: clamp(44px, 6vw, 64px);
    line-height: 1;
    margin-bottom: 42px;
}

.about p:not(.small-heading):not(.medium-list) {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.about-mediums {
    margin-top: 55px;
    padding-top: 35px;
}

.medium-list {
    letter-spacing: 0.5px;
}
/* =========================
   CONTACT — FINAL CTA
========================= */

.contact {
    padding-top: 140px;
    padding-bottom: 140px;
}

.contact-text {
    max-width: 720px;
}

.contact h2 {
    font-size: clamp(42px, 6vw, 60px);
    line-height: 1.05;
    margin-bottom: 30px;
}

.contact-text > p:not(.small-heading) {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.contact-links {
    margin-top: 10px;
}

.contact-links a {
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-links a:hover {
    transform: translateY(-2px);
}
/* =========================
   CONTACT — LINK BUTTONS
========================= */

.contact-links .email-link {
    display: inline-block;
    margin-top: 0;
    background: transparent;
    color: #222;
    border: 1px solid #222;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 1px;
}

.contact-links .email-link:hover {
    background: #222;
    color: #fff;
}
