/* =========================================================
   DAVID SCHURE — WEBSITE STYLES
   Clean responsive version
   ========================================================= */


/* =========================================================
   1. GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f5f3ef;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #111;
}


/* =========================================================
   2. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    height: 82px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d8d5cf;
    background: #f5f3ef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #111;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.site-header nav {
    display: flex;
    gap: 28px;
}

.site-header nav a {
    color: #111;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.site-header nav a:hover,
.site-header nav .active {
    border-bottom: 1px solid #111;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 12px;
    letter-spacing: 0.12em;
    cursor: pointer;
}


/* =========================================================
   3. GENERAL TYPOGRAPHY
   ========================================================= */

.eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 8vw 6vw;
}

.page h1 {
    margin: 0 0 25px;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.intro,
.lead {
    max-width: 700px;
    margin-bottom: 55px;
    font-size: 20px;
}

.text-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #111;
}

.button {
    display: inline-block;
    padding: 15px 22px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                transform 0.3s ease;
}

.button:hover {
    background-color: transparent;
    color: #111;
    transform: translateY(-3px);
}

.button:focus-visible {
    background-color: transparent;
    color: #111;
    outline: 2px solid #111;
    outline-offset: 3px;
    transform: translateY(-3px);
}


/* =========================================================
   4. PLACEHOLDER IMAGES
   ========================================================= */

.placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dedbd5;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-align: center;
}


/* =========================================================
   5. HOMEPAGE HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    gap: 5vw;
    padding: 3vw 6vw;
}

.hero > * {
    min-width: 0;
}

.hero-art {
    flex: 0 0 48%;
    width: 100%;
    height: min(76vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-copy {
    flex: 1 1 52%;
    min-width: 0;
}

.hero-copy h1 {
    margin: 0 0 28px;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-copy p:not(.eyebrow) {
    max-width: 500px;
    font-size: 19px;
}


/* DISCOVER DAVID — desktop rollover */
.hero-copy .button {
    border: 1px solid #111;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                transform 0.3s ease;
}

.hero-copy .button:hover {
    background-color: transparent;
    color: #111;
    transform: translateY(-3px);
}

.hero-copy .button:focus-visible {
    background-color: transparent;
    color: #111;
    outline: 2px solid #111;
    outline-offset: 3px;
    transform: translateY(-3px);
}


/* =========================================================
   6. ARTIST STATEMENT
   ========================================================= */

.statement {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 10vw 8vw;
    border-top: 1px solid #d8d5cf;
    border-bottom: 1px solid #d8d5cf;
}

.statement h2 {
    margin: 0 0 22px;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.02;
}


/* =========================================================
   7. FEATURED ARTWORK
   ========================================================= */

.feature {
    background-color: black;
	display: flex;
    align-items: flex-start;
    gap: 7vw;
    padding: 9vw 8vw;
}

.feature > * {
    flex: 1;
}

.feature h2 {
    margin: 0 0 22px;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.02;
}



/* =========================================================
   8. STANDARD ART GRID
   ========================================================= */

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
}

.grid > * {
    flex: 1 1 calc(50% - 2vw);
    min-width: 0;
}

.card {
    color: #111;
    text-decoration: none;
}

.card .placeholder {
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.card h2 {
    margin: 18px 0 2px;
    font-size: 24px;
}

.card p {
    margin-top: 0;
    color: #666;
}


/* =========================================================
   9. MASONRY ART GALLERY
   ========================================================= */

.masonry-gallery {
    columns: 4 280px;
    column-gap: 24px;
    width: 100%;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 24px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.masonry-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.masonry-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.masonry-caption {
    padding: 12px 2px 8px;
}

.masonry-caption h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.masonry-caption p {
    margin: 5px 0 0;
    color: #666;
    font-size: 12px;
}


/* =========================================================
   10. INDIVIDUAL ARTWORK PAGES
   ========================================================= */

.artwork-page .two-col {
    align-items: flex-start;
    gap: 5vw;
}

/* Individual artwork pages: make the artwork column wider than the text column */
.artwork-page .two-col {
    align-items: flex-start;
    gap: 5vw;
}

.artwork-page .two-col > :first-child {
    flex: 0 0 55%;
    min-width: 0;
}

.artwork-page .two-col > :last-child {
    flex: 1;
    min-width: 0;
}

.artwork-frame {
    width: 100%;
    max-width: 625px;
    height: auto;
    margin: 0 auto;
    background: transparent;
}

.artwork-frame img,
.artwork-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}
/* =========================================================
   11. ARTIST PAGE
   ========================================================= */

.two-col {
    display: flex;
    align-items: center;
    gap: 8vw;
}

.two-col > * {
    flex: 1;
}

.portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
}


/* =========================================================
   12. STUDIO
   ========================================================= */

.studio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
}

.studio-grid > * {
    flex: 1 1 calc(33.333% - 2vw);
    min-width: 0;
}


/* =========================================================
   13. PRESS
   ========================================================= */

.press-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
}

.press-list > * {
    flex: 1 1 calc(33.333% - 2vw);
    min-width: 0;
}

.press-list article {
    padding-top: 20px;
    border-top: 1px solid #111;
}


/* =========================================================
   14. CONTACT
   ========================================================= */

.contact form {
    max-width: 700px;
}

.contact label {
    display: block;
    margin: 0 0 25px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact input,
.contact textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border: 1px solid #aaa;
    background: #fff;
    font: inherit;
}


/* =========================================================
   15. FOOTER
   ========================================================= */

footer {
    padding: 30px 6vw;
    border-top: 1px solid #d8d5cf;
    font-size: 11px;
    letter-spacing: 0.08em;
}


/* =========================================================
   16. TABLET — 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .masonry-gallery {
        columns: 3 240px;
        column-gap: 20px;
    }

    .masonry-item {
        margin-bottom: 20px;
    }

    .studio-grid > *,
    .press-list > * {
        flex-basis: calc(50% - 1.5vw);
    }
}


/* =========================================================
   17. TABLET / SMALL SCREEN — 800px
   ========================================================= */

@media (max-width: 800px) {

    /* Header */

    .site-header {
        height: 68px;
    }

    .menu-btn {
        display: block;
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        padding: 25px 6vw;
        background: #f5f3ef;
        border-bottom: 1px solid #d8d5cf;
        flex-direction: column;
        gap: 18px;
    }

    .site-header nav.open {
        display: flex;
    }


    /* Hero */

    .hero {
        display: block;
        min-height: 0;
        padding: 0 6vw 3vw;
    }

    .hero-art {
        height: auto;
        margin-bottom: 3vw;
    }

    .hero-art img {
        width: 100%;
        height: auto;
    }

    /* Feature */
	
	.feature {
        display: block;
        padding: 14vw 6vw;
    }

    .feature > * {
        margin-bottom: 8vw;
    }


    /* Two-column layouts */

    .two-col {
        display: block;
    }

    .two-col > * {
        margin-bottom: 8vw;
    }


    /* Standard gallery */

    .grid {
        display: block;
    }

    .grid > * {
        margin-bottom: 8vw;
    }


    /* Masonry gallery */

    .masonry-gallery {
        columns: 2 200px;
        column-gap: 16px;
    }

    .masonry-item {
        margin-bottom: 16px;
    }


    /* Artwork */

    .artwork-frame {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        margin: 0 auto;
    }

    .artwork-frame img,
    .artwork-image {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
    }


    /* Studio / Press */

    .studio-grid,
    .press-list {
        display: block;
    }

    .studio-grid > *,
    .press-list > * {
        margin-bottom: 8vw;
    }


    /* Page */

    .page {
        padding: 14vw 6vw;
    }

    .statement {
        padding: 14vw 8vw;
    }
}


/* =========================================================
   18. PHONE — 520px
   ========================================================= */

@media (max-width: 520px) {

    .hero-copy h1 {
        font-size: 52px;
    }

    .masonry-gallery {
        columns: 1;
    }

    .masonry-item {
        margin-bottom: 28px;
    }

    .masonry-caption h2 {
        font-size: 17px;
    }

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

	/* FEATURE SECTION — FORCE WHITE TEXT */

	.feature,
	.feature h1,
	.feature h2,
	.feature h3,
	.feature p,
	.feature .eyebrow,
	.feature a,
	.feature .text-link {
    	color: #fff;
	}

	.feature .text-link {
    	border-bottom-color: #fff;
}
