/* Font */
@font-face {
    font-family: 'Bell BQ';
    src: url('assets/fonts/Bell-BQ-Regular.woff2') format('woff2'),
         url('assets/fonts/Bell-BQ-Regular.woff') format('woff'),
         url('assets/fonts/Bell-BQ-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* GT America Standard */
@font-face {
    font-family: 'GT America';
    src: url('assets/fonts/GT-America-Standard-Regular.woff2') format('woff2'),
         url('assets/fonts/GT-America-Standard-Regular.woff') format('woff'),
         url('assets/fonts/GT-America-Standard-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America';
    src: url('assets/fonts/GT-America-Standard-Medium.woff2') format('woff2'),
         url('assets/fonts/GT-America-Standard-Medium.woff') format('woff'),
         url('assets/fonts/GT-America-Standard-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* GT America Extended */
@font-face {
    font-family: 'GT America Extended';
    src: url('assets/fonts/GT-America-Extended-Light.woff2') format('woff2'),
         url('assets/fonts/GT-America-Extended-Light.woff') format('woff'),
         url('assets/fonts/GT-America-Extended-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America Extended';
    src: url('assets/fonts/GT-America-Extended-Medium.woff2') format('woff2'),
         url('assets/fonts/GT-America-Extended-Medium.woff') format('woff'),
         url('assets/fonts/GT-America-Extended-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America Extended';
    src: url('assets/fonts/GT-America-Extended-Black.woff2') format('woff2'),
         url('assets/fonts/GT-America-Extended-Black.woff') format('woff'),
         url('assets/fonts/GT-America-Extended-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* GT America Compressed */
@font-face {
    font-family: 'GT America Compressed';
    src: url('assets/fonts/GT-America-Compressed-Bold.woff2') format('woff2'),
         url('assets/fonts/GT-America-Compressed-Bold.woff') format('woff'),
         url('assets/fonts/GT-America-Compressed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

/* Section padding - no max-width container */
.section-padding {
    padding-left: 4vw;
    padding-right: 4vw;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    padding: 20px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Menu Toggle Button (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-family: 'GT America Compressed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4vw;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.6s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.675s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.75s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.825s; }

.mobile-menu-links a {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-links a.active {
    color: #ccc;
}

.mobile-menu-links a:hover {
    color: #666;
}

.mobile-menu-footer {
    padding: 30px 4vw;
}

.mobile-menu-footer-links {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
}

.footer-col a:hover {
    color: #666;
}

.instagram-link {
    display: inline-block;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .instagram-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.925s;
}

.instagram-link:hover {
    color: #666;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Artist Info Section */
.artist-info {
    padding: 100px 4vw;
}

.artist-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.artist-info h1 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.artist-description p {
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5em;
}

.cv-link {
    display: inline-block;
    margin-top: 20px;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.4vw, 21px);
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.cv-link:hover {
    opacity: 0.6;
}

/* Selected Works Section */
.selected-works {
    padding: 60px 4vw 100px;
}

.section-title {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.artwork-item {
    cursor: pointer;
}

.artwork-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.artwork-overlay {
    padding-top: 12px;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.artwork-item:hover .artwork-overlay {
    opacity: 1;
}

.artwork-title {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
    color: #1a1a1a;
    text-align: center;
}

.artwork-title em {
    font-style: normal;
}

/* Artwork Modal */
.artwork-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.artwork-modal.active {
    transform: translateY(0);
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 4vw;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #1a1a1a;
    z-index: 2001;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.5;
}

/* Navigation arrows hidden - use swipe on mobile */
.modal-nav {
    display: none;
}

.modal-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 120px 60px;
}

.modal-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    position: fixed;
    bottom: 40px;
    left: 40px;
}

.modal-artist {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.modal-title {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.modal-medium {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.modal-dimensions {
    font-size: 13px;
    color: #666;
}

.inquire-link {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.inquire-link:hover {
    opacity: 0.6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
.footer {
    padding: 60px 4vw;
    border-top: 1px solid #e5e5e5;
    position: relative;
    z-index: 60;
    background-color: #fff;
}

.newsletter p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    background: transparent;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: #1a1a1a;
}

.newsletter-form button {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
    opacity: 0.6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Hero - smaller than homepage */
.about-hero {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Artist Statement Section */
.artist-statement {
    padding: 100px 4vw;
}

.artist-statement-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.artist-statement h1 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.artist-statement-content p {
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5em;
}

/* Studio Section - Collage Layout */
.studio-section {
    padding: 60px 4vw 100px;
}

.studio-collage {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.studio-img {
    position: absolute;
    cursor: pointer;
    transition: z-index 0s, box-shadow 0.2s ease;
    overflow: hidden;
}

.studio-img:hover,
.studio-img-left:hover,
.studio-img-center:hover,
.studio-img-right:hover {
    z-index: 10 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.studio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center image - largest, in the middle */
.studio-img-center {
    position: relative;
    width: 40%;
    aspect-ratio: 3 / 4;
    z-index: 2;
}

/* Left image - overlaps left side of center, positioned from center */
.studio-img-left {
    width: 28%;
    aspect-ratio: 4 / 3;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-135%, -30%);
}

/* Right image - overlaps right side of center, positioned from center */
.studio-img-right {
    width: 28%;
    aspect-ratio: 4 / 3;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(35%, -70%);
}

/* Exhibitions Section */
.exhibitions-section {
    padding: 60px 4vw 100px;
}

.exhibition-category {
    margin-bottom: 80px;
}

.exhibition-category:last-child {
    margin-bottom: 0;
}

.exhibition-category-title {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.exhibition-list {
    list-style: none;
}

.exhibition-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 60px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.exhibition-item:hover {
    opacity: 0.7;
}

.exhibition-item:last-child {
    border-bottom: none;
}

.exhibition-year {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    color: #999;
}

.exhibition-details {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    color: #1a1a1a;
    line-height: 1.4;
}

.exhibition-details em {
    font-style: italic;
}

/* Exhibition hover image (desktop) - follows cursor */
.exhibition-hover-image {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 100;
    will-change: transform;
}

.exhibition-hover-image.visible {
    opacity: 1;
}

.exhibition-hover-image img {
    width: 350px;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

/* Mobile exhibition images - hidden on desktop */
.exhibition-image-mobile {
    display: none;
}

/* Mobile fixed image - hidden on desktop */
.exhibition-mobile-fixed-image {
    display: none;
}

/* ================================
   PRESS PAGE STYLES
   ================================ */

/* Press Statement Section */
.press-statement {
    padding: 100px 4vw;
}

.press-statement-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.press-statement h1 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.press-statement-content p {
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5em;
}

/* Featured In - Inline within statement */
.featured-in-inline {
    margin-top: 40px;
}

.featured-label {
    display: block;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: center;
}

.logo-text {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: default;
}

.logo-text:hover {
    opacity: 1;
}

/* Press Section (list) */
.press-section {
    padding: 60px 4vw 100px;
}

.press-list {
    display: flex;
    flex-direction: column;
}

.press-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 60px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.press-item:hover {
    opacity: 0.7;
}

.press-item:last-child {
    border-bottom: none;
}

.press-year {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    color: #999;
}

.press-details {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    color: #1a1a1a;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.press-details strong {
    font-weight: 500;
}

.press-link-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.press-item:hover .press-link-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Press hover image (desktop) - follows cursor */
.press-hover-image {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 100;
    will-change: transform;
}

.press-hover-image.visible {
    opacity: 1;
}

.press-hover-image img {
    width: 350px;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

/* Mobile press fixed image - hidden on desktop */
.press-mobile-fixed-image {
    display: none;
}

/* Press Resources Section */
.press-resources {
    padding: 80px 4vw 100px;
    border-top: 1px solid #e5e5e5;
    position: relative;
    z-index: 60;
    background-color: #fff;
}

.press-resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.press-contact h3,
.press-kit h3 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.press-contact p,
.press-kit p {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-email {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.press-email:hover {
    opacity: 0.6;
}

.press-kit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.press-kit-button:hover {
    background-color: #333;
}

.press-kit-button svg {
    flex-shrink: 0;
}

/* Active nav link style */
.nav-links a.active {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 900px) {
    .artist-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .modal-content {
        padding: 80px 60px 120px;
    }

    .modal-info {
        left: 30px;
        bottom: 30px;
    }

    .inquire-link {
        right: 30px;
        bottom: 30px;
    }

    /* About page responsive */
    .artist-statement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .studio-collage {
        min-height: 450px;
    }

    .studio-img-center {
        width: 45%;
    }

    .studio-img-left {
        width: 32%;
        transform: translate(-125%, -30%);
    }

    .studio-img-right {
        width: 32%;
        transform: translate(25%, -70%);
    }

    /* Press page responsive */
    .press-statement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-resources-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .artwork-overlay {
        opacity: 1;
    }

    .artist-info h1 {
        font-size: 28px;
    }

    .artist-description p {
        font-size: 18px;
    }

    /* About page mobile */
    .artist-statement h1 {
        font-size: 28px;
    }

    .artist-statement-content p {
        font-size: 18px;
    }

    /* Exhibition mobile layout */
    .exhibition-hover-image {
        display: none;
    }

    .exhibitions-section {
        position: relative;
    }

    .exhibition-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 25px 0;
        padding-right: 45%;
    }

    .exhibition-item:hover {
        opacity: 1;
    }

    .exhibition-year {
        font-size: 14px;
    }

    .exhibition-details {
        font-size: 18px;
    }

    .exhibition-item.in-view {
        opacity: 1;
    }

    .exhibition-item:not(.in-view) {
        opacity: 0.4;
    }

    /* Hide inline mobile images */
    .exhibition-image-mobile {
        display: none;
    }

    /* Fixed image on right side */
    .exhibition-mobile-fixed-image {
        display: block;
        position: fixed;
        right: 4vw;
        top: 50%;
        transform: translateY(-50%);
        width: 38%;
        z-index: 50;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .exhibition-mobile-fixed-image.visible {
        opacity: 1;
    }

    .exhibition-mobile-fixed-image img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: cover;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    /* Press page mobile */
    .press-statement h1 {
        font-size: 28px;
    }

    .press-statement-content p,
    .press-contact p,
    .press-kit p {
        font-size: 18px;
    }

    .logos-grid-inline {
        gap: 15px 30px;
    }

    .logo-text {
        font-size: 11px;
    }

    .featured-in-inline {
        margin-top: 30px;
    }

    /* Press list mobile layout */
    .press-hover-image {
        display: none;
    }

    .press-section {
        position: relative;
    }

    .press-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 0;
        padding-right: 45%;
    }

    .press-item:hover {
        opacity: 1;
    }

    .press-year {
        font-size: 14px;
    }

    .press-details {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .press-item.in-view {
        opacity: 1;
    }

    .press-item:not(.in-view) {
        opacity: 0.4;
    }

    /* Fixed press image on right side */
    .press-mobile-fixed-image {
        display: block;
        position: fixed;
        right: 4vw;
        top: 50%;
        transform: translateY(-50%);
        width: 38%;
        z-index: 50;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .press-mobile-fixed-image.visible {
        opacity: 1;
    }

    .press-mobile-fixed-image img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: cover;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .press-resources {
        padding: 60px 4vw 80px;
    }

    .press-kit-button {
        padding: 14px 22px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 70vh;
    }

    .artist-info {
        padding: 60px 4vw;
    }

    .modal-content {
        padding: 80px 20px 150px;
    }

    .modal-info {
        left: 20px;
        right: 20px;
        bottom: 80px;
    }

    .inquire-link {
        left: 20px;
        right: 20px;
        bottom: 30px;
        text-align: center;
    }

    /* About page small mobile */
    .about-hero {
        height: 50vh;
    }

    .artist-statement {
        padding: 60px 4vw;
    }

    .studio-section {
        padding: 40px 4vw 60px;
    }

    .studio-collage {
        min-height: 380px;
    }

    .studio-img-center {
        width: 50%;
    }

    .studio-img-left {
        width: 38%;
        transform: translate(-115%, -20%);
    }

    .studio-img-right {
        width: 38%;
        transform: translate(15%, -80%);
    }

    .exhibitions-section {
        padding: 40px 4vw 60px;
    }

    .exhibition-category {
        margin-bottom: 40px;
    }
}

/* Studio image active state for mobile tap */
.studio-img.active {
    z-index: 10 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Contact Statement - reuses press-statement pattern */
.contact-statement {
    padding: 80px 4vw 100px;
}

.contact-statement-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1400px;
}

.contact-statement h1 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-statement-content p {
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5em;
}

/* Contact Info Inline */
.contact-info-inline {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #666;
    letter-spacing: 0.3px;
}

.contact-email {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.contact-email:hover {
    opacity: 0.6;
}

.contact-address {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 0;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.form-select {
    cursor: pointer;
    appearance: none;
    color: #888;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-select:valid {
    color: #1a1a1a;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-button:hover {
    background-color: #333;
}

/* Social Section with Stacking Cards */
.social-section {
    position: relative;
    padding: 80px 4vw 120px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.social-heading {
    text-align: center;
    margin-bottom: 60px;
}

.social-tagline {
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.social-heading h2 {
    font-family: 'GT America Extended', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Stacking Cards Container */
.cards-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-card {
    position: absolute;
    width: 280px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transform-origin: bottom center;
    transition: transform 0.4s ease, z-index 0s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card:hover {
    transform: rotate(0deg) translateY(-10%) !important;
    z-index: 20 !important;
}

/* Social Links */
.social-links {
    text-align: center;
    margin-top: 60px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'GT America', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.instagram-button:hover {
    background-color: #333;
}

.instagram-button svg {
    stroke: #fff;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-statement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-inline {
        gap: 40px;
    }

    .social-card {
        width: 220px;
        height: 280px;
    }

    .cards-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-statement {
        padding: 60px 4vw 80px;
    }

    .contact-statement h1 {
        font-size: 28px;
    }

    .contact-statement-content p {
        font-size: 18px;
    }

    .contact-info-inline {
        flex-direction: column;
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .social-section {
        padding: 60px 4vw 100px;
    }

    .social-card {
        width: 160px;
        height: 200px;
    }

    .cards-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .social-card {
        width: 120px;
        height: 150px;
    }

    .cards-container {
        height: 250px;
    }
}
