
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap');

:root {
    --ink: #191612;
    --paper: #f2eee6;
    --cream: #fbf7ef;
    --gold: #b98134;
    --gold-light: #d5a75d;
    --muted: #756e64;
    --line: rgba(25, 22, 18, 0.14);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(22px, 5vw, 76px);
    color: var(--cream);
}

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

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .06em;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.brand-text small {
    margin-top: 5px;
    color: rgba(255,255,255,.7);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.header-link {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.55);
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--ink);
    color: var(--cream);
}

.hero-image {
    min-height: 100vh;
    overflow: hidden;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(.88) contrast(1.02);
}

.hero-copy {
    align-self: center;
    padding: 150px clamp(34px, 6vw, 105px) 90px clamp(38px, 6vw, 110px);
}

.eyebrow,
.section-kicker {
    margin: 0 0 24px;
    color: var(--gold-light);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero h1,
h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    line-height: .9;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(5rem, 8.2vw, 9.4rem);
    letter-spacing: -.045em;
}

.hero h1 em {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-lead {
    max-width: 610px;
    margin: 38px 0 0;
    color: rgba(255,255,255,.76);
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: .25s ease;
}

.button-primary {
    background: var(--gold);
    color: #fff;
}

.button-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.button-secondary {
    border-color: rgba(255,255,255,.38);
    color: #fff;
}

.button-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
}

.statement {
    padding: clamp(80px, 11vw, 160px) clamp(24px, 9vw, 150px);
    background: var(--cream);
    text-align: center;
}

.quote {
    max-width: 1120px;
    margin: 0 auto;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4.8vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.attribution {
    margin: 28px 0 0;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-shell {
    padding: clamp(78px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.about {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: clamp(48px, 8vw, 130px);
    border-top: 1px solid var(--line);
}

.about h2,
.gallery-heading h2,
.coming-soon h2 {
    max-width: 760px;
    font-size: clamp(3.4rem, 6vw, 6.7rem);
    letter-spacing: -.04em;
}

.about-copy {
    max-width: 720px;
    padding-top: 40px;
}

.about-copy p {
    margin: 0 0 24px;
    color: #4f4941;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.5;
}

.exhibition {
    background: #d8c2a1;
}

.exhibition-card {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 650px;
    background: var(--ink);
    color: var(--cream);
}

.exhibition-image {
    min-height: 540px;
}

.exhibition-image img {
    height: 100%;
    object-fit: cover;
}

.exhibition-copy {
    align-self: center;
    padding: clamp(50px, 7vw, 100px);
}

.exhibition-copy h2 {
    font-size: clamp(4rem, 6vw, 7rem);
    color: var(--gold-light);
    letter-spacing: -.04em;
}

.event-meta {
    margin: 20px 0 26px;
    color: rgba(255,255,255,.65);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.exhibition-copy p:not(.section-kicker):not(.event-meta) {
    color: rgba(255,255,255,.76);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.5;
}

.text-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gallery {
    background: var(--cream);
}

.gallery-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
}

.gallery-heading > p {
    max-width: 540px;
    margin: 0 0 8px auto;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 22px;
}

.gallery-item {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    background: #ddd;
}

.gallery-item-wide {
    min-height: 520px;
}

.gallery-item-tall {
    grid-row: span 2;
    min-height: 1062px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.025);
}

.gallery-item figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: rgba(20,17,14,.86);
    color: #fff;
    backdrop-filter: blur(8px);
}

.gallery-item figcaption span {
    font-family: var(--serif);
    font-size: 1.75rem;
}

.gallery-item figcaption small {
    color: rgba(255,255,255,.65);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.coming-soon {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
}

.coming-soon h2 {
    max-width: 980px;
    margin: 0 auto;
}

.coming-soon > p:not(.section-kicker) {
    max-width: 760px;
    margin: 34px auto;
    color: rgba(255,255,255,.68);
    font-family: var(--serif);
    font-size: 1.4rem;
}

.site-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 44px clamp(24px, 7vw, 110px);
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--ink);
    color: var(--cream);
}

.site-footer > div {
    display: grid;
}

.site-footer strong {
    font-family: var(--serif);
    font-size: 1.5rem;
}

.site-footer span,
.site-footer a {
    color: rgba(255,255,255,.58);
    font-size: .78rem;
}

.footer-contact {
    justify-items: end;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 62vh;
    }

    .hero-copy {
        padding-top: 90px;
    }

    .about,
    .gallery-heading,
    .exhibition-card {
        grid-template-columns: 1fr;
    }

    .gallery-heading > p {
        margin-left: 0;
    }

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

    .gallery-item-tall {
        grid-row: auto;
        min-height: 680px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 18px;
    }

    .brand-text small {
        display: none;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero-image {
        min-height: 52vh;
    }

    .hero-copy {
        padding: 70px 22px 70px;
    }

    .hero h1 {
        font-size: clamp(4.1rem, 20vw, 6rem);
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .section-shell {
        padding-right: 22px;
        padding-left: 22px;
    }

    .exhibition {
        padding-right: 0;
        padding-left: 0;
    }

    .exhibition-copy {
        padding: 50px 24px 60px;
    }

    .gallery-item,
    .gallery-item-wide,
    .gallery-item-tall {
        min-height: 460px;
    }

    .gallery-item figcaption {
        display: grid;
    }

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

    .footer-contact {
        justify-items: start;
    }
}


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

.header-nav a {
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    font-size: .74rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.header-nav a:hover {
    border-color: rgba(255,255,255,.7);
}

.contact {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(48px, 8vw, 120px);
    background: #e7dfd2;
}

.contact-copy h2 {
    font-size: clamp(3.4rem, 5.8vw, 6rem);
    letter-spacing: -.04em;
}

.contact-copy > p:not(.section-kicker) {
    max-width: 560px;
    margin: 28px 0 20px;
    color: #5d554c;
    font-family: var(--serif);
    font-size: 1.35rem;
}

.contact-email {
    color: var(--gold);
    font-weight: 600;
}

.contact-form {
    padding: clamp(28px, 4vw, 50px);
    background: var(--cream);
    border: 1px solid var(--line);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-form label span {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(25,22,18,.2);
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.contact-form input {
    min-height: 50px;
    padding: 0 14px;
}

.contact-form textarea {
    resize: vertical;
    padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185,129,52,.12);
}

.form-message {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-left: 4px solid;
}

.form-message.success {
    border-color: #3f7f52;
    background: #edf6ef;
    color: #285b38;
}

.form-message.error {
    border-color: #a4493f;
    background: #faefed;
    color: #7d3029;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

@media (max-width: 980px) {
    .contact {
        grid-template-columns: 1fr;
    }
}

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

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