:root {
  --bg: #f7f5f1;
  --bg-alt: #efece5;
  --ink: #1c1b19;
  --ink-soft: #55524c;
  --line: #d9d4c9;
  --accent: #8a6b4a;
  --gray-cover: #9b968d;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Body */
body {
  margin: 0;
  padding-top: 76px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-inner.narrow {
  max-width: 780px;
}

.kicker {
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 12px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1515 / 1449;
  max-height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-cover);
  overflow: hidden;
  padding: 120px 24px 60px;
  background: rgba(255, 255, 255, 1);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,28,25,0.35) 0%, rgba(30,28,25,0.15) 35%, rgba(30,28,25,0.55) 100%);
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 640px;
}
.hero-text .eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 18px;
  opacity: 0.9;
}
.hero-text h1 {
  font-size: clamp(42px, 8vw, 76px);
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}
.hero-text .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 20px);
  margin: 0 0 28px;
  opacity: 0.95;
}
.hero-text .artist-name {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  letter-spacing: 0.06em;
  margin: 0 0 36px;
}
.hero-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 13px;
}
.hero-details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-details .label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  opacity: 0.75;
}
.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
  transition: background .25s, color .25s;
}
.btn:hover { background: #fff; color: var(--ink); }

/* Statement */
.statement {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}
.statement blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.statement p {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.statement .signoff {
  margin-top: 40px;
  font-style: italic;
  color: var(--accent);
}

/* Work / gallery */
.work {
  padding: 100px 0 120px;
  background: var(--bg-alt);
}
.work h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 44px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
}
.card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eae7e0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body {
  padding: 16px 18px 20px;
}
.card-body h3 {
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.card-body .meta {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.card-body .price {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.card.hidden { display: none; }

/* Artist */
.artist {
  padding: 120px 0;
  background: var(--bg);
}
.artist h2 { font-size: clamp(30px, 4vw, 42px); margin: 8px 0 16px; }
.former-name {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 26px;
}
.artist p {
  line-height: 1.75;
  color: var(--ink-soft);
  font-size: 15px;
}
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.cv-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--ink);
}
.cv-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cv-grid li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  border-left: 2px solid var(--line);
  padding-left: 14px;
}
.cv-grid li span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.archival-note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-style: italic;
}

/* Visit */
.visit {
  padding: 100px 0 120px;
  background: var(--ink);
  color: #f2f0ea;
}
.visit .kicker { color: #cbb896; }
.visit h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 44px;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.visit-card {
  background: var(--ink);
  padding: 32px 28px;
}
.visit-card h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cbb896;
  margin-bottom: 12px;
}
.visit-card p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
}

/* Contact */
.contact {
  padding: 110px 0;
  background: var(--bg);
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.contact-text h2 { font-size: clamp(28px, 4vw, 38px); margin: 8px 0 16px; }
.contact-text p { color: var(--ink-soft); line-height: 1.7; max-width: 420px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.contact-list .label {
  display: inline-block;
  width: 90px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-qr img {
  width: 180px;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fff;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  background: var(--ink);
  color: #cfcbc2;
}
.site-footer p { margin: 4px 0; font-size: 13px; }
.site-footer .muted { color: #8b877e; font-size: 12px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lightbox-content img {
  max-height: 68vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-info {
  text-align: center;
  color: #f2f0ea;
}
.lightbox-info h3 {
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lightbox-info p {
  font-size: 13px;
  color: #b9b5ab;
  margin: 4px 0;
}
#lightboxPrice { color: #cbb896; letter-spacing: 0.04em; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.7;
  transition: opacity .2s;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* Responsive */
@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 32px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .cv-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .hero-details { gap: 24px; }

  .hero {
    aspect-ratio: auto;
    min-height: 640px;
    padding: 110px 24px 72px;
  }
  .hero-details {
    margin-bottom: 28px;
  }
  .hero .btn {
    margin-top: 4px;
  }
}
