:root {
    --ink: #3a3a3a;
    --muted: #8a8a8a;
    --bg: #ffffff;
    --accent: #c9b38c;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Century Gothic", "Futura", "Avenir Next", "Segoe UI", sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

a { color: inherit; }

/* header */
header {
    text-align: center;
    padding: 2.2rem 1rem 1.4rem;
}

.site-title {
    font-size: 2rem;
    letter-spacing: 0.45em;
    text-decoration: none;
    color: var(--ink);
}

nav {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.6rem;
}

nav a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--ink);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

nav a:hover, nav a.active { border-bottom-color: var(--ink); }

main { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }

/* home */
.hero-text { text-align: center; padding: 3rem 0 2rem; }
.hero-text h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 300; letter-spacing: 0.3em; margin: 0; }
.tagline { color: var(--muted); letter-spacing: 0.15em; margin-top: 1rem; }

.hero { display: block; }
.hero img, .band-img img { width: 100%; display: block; }

.band { text-align: center; padding-top: 3rem; }
.quote { font-size: 1.4rem; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 2rem; }

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 4rem;
}
.contact-img img { width: 100%; display: block; }
.contact-text h2 { font-weight: 300; letter-spacing: 0.3em; }

/* galleries */
.page-heading {
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 1.5rem 0 2.5rem;
}

.masonry { columns: 3; column-gap: 14px; }
.art { display: block; margin-bottom: 14px; break-inside: avoid; }
.art img {
    width: 100%;
    height: auto;
    display: block;
    background: #f2f0ec;
    transition: opacity 0.2s;
}
.art:hover img { opacity: 0.88; }

/* bio */
.bio {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: start;
    padding-top: 1.5rem;
}
.bio-img img { width: 100%; display: block; }
.bio-text h1 { font-weight: 300; letter-spacing: 0.25em; font-size: 2rem; }
.bio-text h2, .bio-text h3 { font-weight: 400; }
.bio-text ul { padding-left: 1.2rem; }

/* press */
.post { max-width: 720px; margin: 0 auto; }
.post h2 { font-weight: 400; }
.post-meta { color: var(--muted); font-size: 0.9rem; }
.post-img img { width: 100%; display: block; margin-top: 1.5rem; }

/* footer */
footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding: 2rem 1rem 2.5rem;
    border-top: 1px solid #eee;
}

/* lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
#lightbox[hidden] { display: none; }
#lb-img { max-width: 92vw; max-height: 92vh; display: block; }
#lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.6rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    line-height: 1;
    opacity: 0.8;
}
#lightbox button:hover { opacity: 1; }
#lb-close { top: 0.5rem; right: 0.8rem; }
#lb-prev { left: 0.4rem; top: 50%; transform: translateY(-50%); }
#lb-next { right: 0.4rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
    .masonry { columns: 2; }
}

@media (max-width: 640px) {
    .masonry { columns: 1; }
    .contact, .bio { grid-template-columns: 1fr; }
    .site-title { font-size: 1.4rem; letter-spacing: 0.3em; }
    nav { gap: 1rem; }
}
