:root { --ink: #eeeae2; --muted: #8e8b85; --line: rgba(238,234,226,.18); --bg: #111211; --accent: #c4d36b; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: 'Segoe UI', Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.site-header { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 27px 4vw; border-bottom: 1px solid var(--line); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.wordmark { font-family: Georgia, serif; font-size: 23px; letter-spacing: -.06em; text-transform: lowercase; }
.wordmark span { color: var(--accent); padding: 0 3px; }
.header-note { color: var(--muted); margin: 0; text-align: center; }
.header-link { justify-self: end; color: var(--muted); transition: color .2s; }
.header-link:hover { color: var(--ink); }
.header-link span { color: var(--accent); padding-left: 7px; font-size: 15px; }
.intro { min-height: min(70vh, 720px); display: flex; align-items: flex-end; justify-content: space-between; padding: 9vw 8vw 7vw; border-bottom: 1px solid var(--line); }
.eyebrow, .gallery-kicker, .piece-meta, .intro-index, .site-footer, .lightbox-caption { font-family: 'Consolas', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow { color: var(--accent); margin: 0 0 30px; }
h1 { font-size: clamp(52px, 9.5vw, 146px); font-weight: 400; letter-spacing: -.075em; line-height: .88; margin: 0; max-width: 950px; }
h1 em { font-family: Georgia, serif; font-weight: 500; letter-spacing: -.08em; }
.intro-text { color: var(--muted); line-height: 1.6; max-width: 350px; margin: 38px 0 0 3px; font-size: 14px; }
.intro-index { display: flex; flex-direction: column; gap: 9px; color: var(--muted); padding-bottom: 3px; }
.intro-index span:first-child { color: var(--ink); }
.collection-nav { display: flex; gap: 18px; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.collection-button { border: 0; padding: 0; background: none; color: var(--muted); cursor: pointer; font: inherit; text-transform: uppercase; letter-spacing: inherit; }
.collection-button.active { color: var(--accent); }
.gallery { padding: 4vw; }
.piece { padding: 4vw 0 7vw; border-bottom: 1px solid var(--line); }
.piece:last-child { border-bottom: 0; }
.piece-head { display: flex; align-items: baseline; justify-content: space-between; margin: 0 4vw 20px; }
.piece-title { font-size: clamp(22px, 3vw, 42px); font-weight: 400; letter-spacing: -.06em; margin: 0; }
.piece-title em { font-family: Georgia, serif; }
.piece-meta { color: var(--muted); }
.piece-image-wrap { position: relative; overflow: hidden; cursor: zoom-in; background: #20211e; }
.piece-image { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.piece-image-wrap:hover .piece-image { transform: scale(1.018); }
.image-hint { position: absolute; right: 18px; bottom: 18px; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; font-family: 'DM Mono', monospace; font-size: 15px; opacity: 0; transition: opacity .2s; }
.piece-image-wrap:hover .image-hint, .piece-image-wrap:focus-within .image-hint { opacity: 1; }
.piece-foot { display: flex; justify-content: space-between; margin: 16px 4vw 0; color: var(--muted); font-family: 'DM Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.variant-switcher { display: flex; gap: 7px; align-items: center; }
.variant-button { border: 0; color: var(--muted); background: none; padding: 0 3px; cursor: pointer; font: inherit; text-transform: uppercase; letter-spacing: inherit; }
.variant-button.active { color: var(--accent); }
.variant-button:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.site-footer { display: flex; justify-content: space-between; padding: 32px 4vw 38px; color: var(--muted); border-top: 1px solid var(--line); }
.lightbox { width: min(94vw, 1400px); max-width: none; padding: 0; border: 0; background: #0b0c0b; color: var(--ink); }
.lightbox::backdrop { background: rgba(0,0,0,.91); }
.lightbox-frame { padding: 22px 22px 0; }
.lightbox-image { display: block; width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-caption { color: var(--muted); padding: 16px 0 6px; }
.lightbox-close { position: absolute; z-index: 1; right: 15px; top: 8px; border: 0; background: none; color: white; font-size: 30px; font-weight: 200; cursor: pointer; }
.lightbox-controls { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px 19px; color: var(--muted); font: 11px 'DM Mono', monospace; }
.lightbox-controls button { border: 0; background: none; color: white; cursor: pointer; font: 22px 'DM Mono', monospace; padding: 2px 8px; }
@media (max-width: 700px) {
  .site-header { grid-template-columns: 1fr auto; gap: 15px; padding: 21px 20px; }
  .header-note { display: none; }
  .intro { min-height: 75vh; display: block; padding: 27vw 20px 15vw; }
  .intro-index { margin-top: 60px; }
  .gallery { padding: 20px; }
  .piece { padding: 13vw 0 17vw; }
  .piece-head, .piece-foot { margin-left: 0; margin-right: 0; }
  .piece-head { align-items: flex-start; gap: 15px; }
  .piece-meta { white-space: nowrap; }
  .piece-foot { gap: 15px; flex-wrap: wrap; line-height: 1.5; }
  .site-footer { padding: 24px 20px 30px; flex-direction: column; gap: 10px; }
  .lightbox-frame { padding: 38px 12px 0; }
}
