:root {
  --ink: #1a1a1a;
  --soft: #6b6b6b;
  --line: #e8e5e0;
  --bg: #fdfcfa;
  --accent: #b08d57;
  --accent-dark: #96753f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,250,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.05rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--soft); font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.current { color: var(--ink); }
.nav-links a.current { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-links a.btn-nav {
  color: #fff; background: var(--ink); padding: 9px 20px; border-radius: 2px; border-bottom: none;
}
.nav-links a.btn-nav:hover { background: var(--accent-dark); }

/* Hero (home) */
header.hero { padding: 80px 0 60px; text-align: center; }
.hero .eyebrow, .page-head .eyebrow {
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 300; letter-spacing: -.01em; line-height: 1.15;
  max-width: 760px; margin: 0 auto 24px;
}
.hero h1 em { font-style: italic; font-family: Georgia, serif; }
.hero p {
  color: var(--soft); max-width: 540px; margin: 0 auto 40px; font-size: 1.05rem;
}

/* Page header (interior pages) */
.page-head { padding: 70px 0 10px; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300; letter-spacing: -.01em; margin-bottom: 14px;
}
.page-head p { color: var(--soft); max-width: 560px; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; letter-spacing: .1em;
  text-transform: uppercase; font-size: .82rem; padding: 15px 38px;
  border-radius: 2px; transition: all .2s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); margin-left: 12px; }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Sections */
section { padding: 70px 0; }
.section-label {
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
h2 { font-size: 2rem; font-weight: 300; margin-bottom: 18px; }
.lead { color: var(--soft); max-width: 560px; margin-bottom: 48px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.piece { display: flex; flex-direction: column; }
.art {
  aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; position: relative;
  background: #eceae5;
}
.art img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.piece:hover .art img { transform: scale(1.04); }
.caption { padding: 14px 2px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.caption .title { font-size: .95rem; font-weight: 500; }
.caption .artist { display: block; font-size: .8rem; color: var(--soft); font-weight: 400; margin-top: 2px; }
.caption .price { font-family: Georgia, serif; font-size: 1.1rem; white-space: nowrap; color: var(--accent-dark); }

/* Placeholder tiles (clothing/books until photos arrive) */
.ph-5 { background: linear-gradient(135deg, #d8cfc0, #b0a188); }
.ph-6 { background: linear-gradient(135deg, #c2c8d6, #838fa8); }
.ph-7 { background: linear-gradient(135deg, #d4bfa8, #9c7e5c); }
.ph-8 { background: linear-gradient(135deg, #bfcdc7, #6f8a80); }
.ph-9 { background: linear-gradient(135deg, #d1c6d8, #8d7a9c); }

/* Shipping banner */
.ship-note {
  margin-top: 48px; padding: 22px 28px; border: 1px solid var(--line);
  border-radius: 2px; background: #f6f4f0; display: flex; align-items: center;
  justify-content: center; gap: 12px; text-align: center; flex-wrap: wrap;
}
.ship-note strong { font-family: Georgia, serif; font-weight: 400; font-size: 1.15rem; }
.ship-note span { color: var(--soft); font-size: .92rem; }

/* Category cards (home) */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  position: relative; aspect-ratio: 16/10; border-radius: 2px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px; text-decoration: none;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
}
.cat-card span {
  position: relative; z-index: 1; color: #fff; font-size: 1rem;
  letter-spacing: .14em; text-transform: uppercase;
}

/* Artists */
.artist-bio { max-width: 720px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.artist-bio:last-of-type { border-bottom: none; }
.artist-bio h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.artist-bio h3 span { font-weight: 400; color: var(--soft); }
.artist-bio p { color: var(--soft); }
.artist-bio a { color: var(--accent-dark); }

/* About / Mission */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.portrait {
  aspect-ratio: 3/4; border-radius: 2px;
  background: linear-gradient(160deg, #cfc4b4, #8f8272);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
}
.about-grid p { color: var(--soft); margin-bottom: 16px; }

/* Contact / dark CTA */
.dark-cta { background: var(--ink); color: #fff; text-align: center; }
.dark-cta .section-label { color: var(--accent); }
.dark-cta h2, .dark-cta h1 { color: #fff; }
.dark-cta p { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 36px; }
.dark-cta .btn-primary { background: #fff; color: var(--ink); }
.dark-cta .btn-primary:hover { background: var(--accent); color: #fff; }
.socials { margin-top: 36px; display: flex; gap: 28px; justify-content: center; }
.socials a {
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; transition: color .2s;
}
.socials a:hover { color: #fff; }

footer {
  padding: 28px 0; text-align: center; font-size: .78rem; color: var(--soft);
  border-top: 1px solid var(--line);
}
footer .foot-links { margin-bottom: 8px; }
footer .foot-links a {
  color: var(--soft); text-decoration: none; margin: 0 10px;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
}
footer .foot-links a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn-nav):not(.current) { display: none; }
  .gallery, .cats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  section { padding: 56px 0; }
  header.hero { padding: 64px 0 48px; }
}
@media (max-width: 520px) {
  .gallery, .cats { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
}

/* Artist accordion */
details.artist-bio { border-bottom: 1px solid var(--line); padding: 0; }
details.artist-bio summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
}
details.artist-bio summary::-webkit-details-marker { display: none; }
details.artist-bio summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--accent);
}
details.artist-bio[open] summary::after { content: '\2212'; }
details.artist-bio summary h3 { margin: 0; }
details.artist-bio p { padding: 0 0 24px; max-width: 720px; }

/* Lightbox */
.piece { cursor: pointer; }
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(20,18,16,.88); padding: 24px;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner {
  background: var(--bg); border-radius: 4px; overflow: hidden;
  max-width: 920px; width: 100%; max-height: 92vh;
  display: grid; grid-template-columns: 1.15fr 1fr;
}
.lb-img { background: #171513; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.lb-img img { max-width: 100%; max-height: 92vh; object-fit: contain; display: block; }
.lb-info { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.lb-info .eyebrow { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.lb-info h2 { font-size: 1.6rem; margin-bottom: 4px; }
.lb-info .lb-artist { color: var(--soft); margin-bottom: 18px; }
.lb-info .lb-price { font-family: Georgia, serif; font-size: 2rem; color: var(--accent-dark); margin-bottom: 26px; }
.lb-info .btn { text-align: center; }
.lb-note { margin-top: 14px; font-size: .8rem; color: var(--soft); }
.lb-close {
  position: absolute; top: 18px; right: 24px; background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer; line-height: 1;
}
@media (max-width: 720px) {
  .lb-inner { grid-template-columns: 1fr; overflow-y: auto; }
  .lb-img img { max-height: 45vh; }
  .lb-info { padding: 24px; }
}

/* Studio videos */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 760px; margin: 0 auto; }
.video-grid video {
  width: 100%; aspect-ratio: 9/16; object-fit: cover;
  border-radius: 4px; background: #171513; display: block;
}
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; max-width: 400px; } }

.portrait-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; display: block; }

.page-head { text-align: center; }
.page-head p { margin: 0 auto; }
