/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0e0e0c;
  --bg-card:     #141410;
  --border:      #2a2a22;
  --gold:        #c9a96e;
  --gold-light:  #e0c898;
  --cream:       #f0ebe0;
  --muted:       #8a8474;
  --white:       #f7f4ed;
  --nav-h:       68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(14,14,12,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--cream);
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

/* ── PAGE ──────────────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  height: calc(100vh - var(--nav-h));
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  border-right: 1px solid var(--border);
}

.hero-img-wrap {
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
}

/* ── BUTTON ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 30px;
  transition: background 0.25s, color 0.25s;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 80px 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header { margin-bottom: 48px; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--white);
  line-height: 1.15;
}

.full-bleed-section {
  padding: 80px 48px;
}

.inner { max-width: 1240px; margin: 0 auto; }

/* ── GALLERY GRID ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Masonry via CSS columns — lets each painting show at natural ratio */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
  padding: 0 48px;
}

.gallery-masonry .work-card {
  break-inside: avoid;
  margin-bottom: 20px;
  aspect-ratio: auto;
  height: auto;
}

.gallery-masonry .work-card .work-img {
  width: 100%;
  height: auto;
  display: block;
}

.work-card {
  position: relative;
  cursor: pointer;
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
}

/* Fixed ratio for grid layout */
.gallery-grid .work-img-wrap {
  aspect-ratio: 3/4;
}

.gallery-grid .work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Natural ratio for masonry */
.gallery-masonry .work-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.work-card .work-img {
  transition: transform 0.6s ease;
}
.work-card:hover .work-img { transform: scale(1.04); }

/* ── WORK LABEL ────────────────────────────────────────────── */
.work-label {
  padding: 12px 2px 6px;
}

.work-label-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.work-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  line-height: 1.3;
}

.work-detail {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.5;
}

.work-price-label {
  font-size: 14px;
  color: var(--gold-light);
}

[data-status="sold"] .work-price-label { display: none; }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,12,0.88) 0%, rgba(14,14,12,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.work-card:hover .work-overlay { opacity: 1; }

.work-info-hover h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 3px;
}

.work-info-hover .meta {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.work-info-hover .price {
  font-size: 15px;
  color: var(--gold-light);
  margin-top: 6px;
}

/* ── STATUS BADGE ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: 'Cormorant SC', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid;
  margin-top: 6px;
}
.badge--available { color: var(--gold);  border-color: var(--gold);   }
.badge--sold      { color: var(--muted); border-color: var(--border); }

/* ── CATEGORY LABEL ────────────────────────────────────────── */
.category-heading {
  padding: 64px 48px 40px;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,6,0.97);
}
.lightbox.active { display: flex; }

.lightbox-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  width: 100%;
  height: 100vh;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
}
.lightbox-img-wrap img {
  max-height: calc(100vh - 120px);
  max-width: 100%;
  object-fit: contain;
}

.lightbox-panel {
  border-left: 1px solid var(--border);
  padding: 80px 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.lb-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lb-meta {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 4px;
}

.lb-price {
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 400;
  margin: 20px 0 4px;
}

.lb-eur {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.lb-status { margin-bottom: 28px; }

.lb-cta {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 16px;
}
.lb-cta:hover { background: var(--gold); color: var(--bg); }

.lb-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}

.lb-close {
  position: fixed;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  transition: color 0.2s;
  font-family: serif;
}
.lb-close:hover { color: var(--cream); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  padding: 20px 16px;
  z-index: 201;
  transition: color 0.2s;
  font-family: serif;
}
.lb-nav:hover { color: var(--cream); }
.lb-prev { left: 16px; }
.lb-next { right: 328px; }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text { padding-top: 48px; }

.about-statement {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 32px;
}
.about-statement em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text p {
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p.primary {
  color: var(--cream);
  font-style: normal;
}

/* ── COLLECT PAGE ──────────────────────────────────────────── */
.collect-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.footer-handle {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  transition: color 0.2s;
}
.footer-handle:hover { color: var(--gold-light); }

/* ── DIVIDER ───────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero                { grid-template-columns: 1fr; }
  .hero-img-wrap       { display: none; }
  .hero-text           { border-right: none; padding: 64px 40px; justify-content: flex-end; min-height: 60vh; }
  .gallery-grid--4     { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry     { columns: 2; padding: 0 24px; }
  .lightbox-inner      { grid-template-columns: 1fr; }
  .lightbox-panel      { display: none; }
  .lb-next             { right: 16px; }
  .about-layout        { grid-template-columns: 1fr; gap: 40px; }
  .about-text          { padding-top: 0; }
}

@media (max-width: 680px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 24px; }
  .gallery-grid, .gallery-grid--4 { grid-template-columns: 1fr; }
  .gallery-masonry     { columns: 1; padding: 0 20px; }
  .section { padding: 60px 20px; }
  .full-bleed-section { padding: 60px 20px; }
  .category-heading { padding: 48px 20px 32px; }
  .hero-text { padding: 48px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
}
