/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg:             #0f0f0f;
  --surface:        #1a1a1a;
  --surface-raised: #222222;
  --accent:         #c9a84c;
  --accent-hover:   #e0bb6a;
  --text:           #e8e8e8;
  --text-hero:      #ffffff;
  --muted:          #888888;
  --border:         #2a2a2a;
  --font-body:      'Inter', 'Segoe UI', sans-serif;
  --font-display:   'Playfair Display', Georgia, serif;
  --width:          1200px;
  --radius-card:    12px;
  --radius-btn:     6px;
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text-hero); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.font-display { font-family: var(--font-display); }

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: var(--width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-hero);
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-search-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--accent); }
.btn-nav-cta {
  background: var(--accent);
  color: #0f0f0f;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.04em;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--accent-hover); color: #0f0f0f; }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
}
.btn-primary:hover { background: var(--accent-hover); color: #0f0f0f; }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: #0f0f0f; }
.btn-dark {
  background: var(--surface-raised);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text-hero);
  margin-bottom: 20px;
}
.hero-headline .accent { color: var(--accent); }
.hero-subtext {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.hero-collage img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.hero-collage img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 412px;
}
.hero-spotlight {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  max-width: 240px;
}
.hero-spotlight-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.hero-spotlight h4 { font-size: 1rem; margin-bottom: 4px; }
.hero-spotlight p { font-size: 0.78rem; color: var(--muted); line-height: 1.4; margin-bottom: 10px; }
.hero-spotlight a { font-size: 0.78rem; color: var(--accent); }

/* ─── Trust Strip ──────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}
.trust-text strong { display: block; font-size: 0.85rem; color: var(--text-hero); }
.trust-text span { font-size: 0.75rem; color: var(--muted); }

/* ─── Section Headers ──────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-header h2 { margin-bottom: 0; }
.section-header a { font-size: 0.85rem; color: var(--accent); }

/* ─── Use Case Tabs ────────────────────────────────────────────────────────── */
.use-case-section { text-align: center; }
.use-case-section h2 { margin-bottom: 32px; }
.use-case-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.use-case-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.use-case-tab:hover, .use-case-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
}
.use-case-tab svg { width: 16px; height: 16px; }

/* ─── Cards: Artwork ───────────────────────────────────────────────────────── */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.art-grid-lg {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.art-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.art-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.art-card-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-raised);
  aspect-ratio: 3/4;
}
.art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.art-card:hover .art-card-img img { transform: scale(1.03); }
.art-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
}
.art-card-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.75);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}
.art-card-btn:hover { background: var(--accent); color: #0f0f0f; }
.art-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}
.art-card-img-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.art-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.art-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-hero);
  line-height: 1.3;
}
.art-card-artist { font-size: 0.75rem; color: var(--muted); }
.art-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag-style   { background: rgba(201,168,76,0.15); color: var(--accent); }
.tag-mood    { background: rgba(100,140,200,0.15); color: #8ab4f8; }
.tag-use     { background: rgba(100,200,140,0.15); color: #81c995; }
.tag-subject { background: rgba(180,180,180,0.1);  color: var(--muted); }
.tag-collect { background: rgba(160,100,200,0.15); color: #c589e8; }

/* ─── Cards: Collection ────────────────────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.collection-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.collection-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.collection-card-img {
  aspect-ratio: 4/3;
  background: var(--surface-raised);
  overflow: hidden;
}
.collection-card-img img { width: 100%; height: 100%; object-fit: cover; }
.collection-card-body { padding: 12px 14px; }
.collection-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-hero);
  margin-bottom: 2px;
}
.collection-card-count { font-size: 0.72rem; color: var(--muted); }

/* ─── Cards: Gallery ───────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
}
.gallery-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.gallery-card-img { aspect-ratio: 16/9; background: var(--surface-raised); overflow: hidden; }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-body { padding: 16px 18px; }
.gallery-card-name { font-size: 1rem; font-weight: 600; color: var(--text-hero); margin-bottom: 6px; }
.gallery-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ─── Cards: Artist ────────────────────────────────────────────────────────── */
.artist-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.artist-card:hover { border-color: var(--accent); }
.artist-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid var(--accent);
  overflow: hidden;
  flex-shrink: 0;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.artist-card-info { flex: 1; }
.artist-card-name { font-size: 1.1rem; margin-bottom: 2px; }
.artist-card-type { font-size: 0.75rem; color: var(--accent); margin-bottom: 8px; }
.artist-card-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.artist-card-styles { display: flex; flex-wrap: wrap; gap: 4px; }

/* ─── Artist Spotlight ─────────────────────────────────────────────────────── */
.artist-spotlight {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 32px;
}
.spotlight-left { display: flex; flex-direction: column; gap: 20px; }
.spotlight-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 3px solid var(--accent);
  overflow: hidden;
}
.spotlight-avatar img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-name { font-size: 1.5rem; margin-bottom: 4px; }
.spotlight-title { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; }
.spotlight-bio { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.spotlight-right {}
.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.spotlight-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ─── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* ─── Join CTA ─────────────────────────────────────────────────────────────── */
.join-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1209 50%, #0f0f0f 100%);
}
.join-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.join-cta h2 { margin-bottom: 16px; }
.join-cta p { color: var(--muted); max-width: 480px; margin: 0 auto 32px; }

/* ─── Footer Feature Strip ─────────────────────────────────────────────────── */
.footer-features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.footer-feature strong { display: block; font-size: 0.85rem; color: var(--text-hero); margin-bottom: 2px; }
.footer-feature span { font-size: 0.75rem; color: var(--muted); }

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-tagline { font-size: 0.8rem; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--text); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── Page Heroes ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
}
.page-hero-content { position: relative; }
.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--accent); display: block; }
.page-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.page-hero-stat strong { display: block; font-size: 1.2rem; color: var(--accent); }
.page-hero-stat span { font-size: 0.75rem; color: var(--muted); }

/* ─── Filter Bar ───────────────────────────────────────────────────────────── */
.filter-bar {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 32px;
}
.filter-bar-inner { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.filter-search input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  padding: 9px 14px 9px 36px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.filter-search input:focus { outline: none; border-color: var(--accent); }
.filter-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  pointer-events: none;
}
.filter-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  padding: 9px 32px 9px 14px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.filter-select:focus { outline: none; border-color: var(--accent); }
.filter-btn {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  padding: 9px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Artwork Detail ───────────────────────────────────────────────────────── */
.artwork-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.artwork-image-wrap {
  position: sticky;
  top: 88px;
}
.artwork-image-wrap img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.artwork-info { padding: 8px 0; }
.artwork-artist-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
}
.artwork-artist-link img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.artwork-artist-link span { font-size: 0.82rem; color: var(--accent); }
.artwork-title { margin-bottom: 8px; }
.artwork-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.artwork-desc { font-size: 0.92rem; line-height: 1.7; color: var(--text); margin-bottom: 28px; }
.artwork-meta-section { margin-bottom: 24px; }
.artwork-meta-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.artwork-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 4px 12px;
}
.artwork-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-top: 28px;
}
.artwork-cta-box p { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.distribution-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 10px;
}

/* ─── Artist Profile ───────────────────────────────────────────────────────── */
.artist-profile-header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.artist-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
}
.artist-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-profile-info h1 { margin-bottom: 4px; }
.artist-profile-type { color: var(--accent); font-size: 0.85rem; margin-bottom: 12px; }
.artist-profile-bio { font-size: 0.92rem; line-height: 1.7; max-width: 600px; margin-bottom: 20px; }
.artist-styles { display: flex; flex-wrap: wrap; gap: 6px; }
.artist-style-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ─── Botanical Library ────────────────────────────────────────────────────── */
.botanical-hero {
  background: linear-gradient(135deg, #0a100a 0%, #0f1a0f 50%, #0a0f0a 100%);
  border-bottom: 1px solid var(--border);
}

/* ─── Pagination ───────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); color: #0f0f0f; border-color: var(--accent); font-weight: 600; }

/* ─── Gallery Footer Strip ─────────────────────────────────────────────────── */
.gallery-footer-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.gallery-footer-strip p { color: var(--muted); font-size: 0.85rem; margin-bottom: 16px; }
.gallery-footer-strip-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Empty State ──────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}
.empty-state h3 { margin-bottom: 8px; color: var(--muted); }
.empty-state p { font-size: 0.9rem; }

/* ─── 404 ──────────────────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 120px 24px; }
.error-code { font-size: 6rem; font-family: var(--font-display); color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-page h2 { margin-bottom: 12px; }
.error-page p { color: var(--muted); max-width: 400px; margin: 0 auto 32px; }

/* ─── Form ─────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; color: var(--text); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ─── Utilities ────────────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .artwork-detail { grid-template-columns: 1fr; }
  .artwork-image-wrap { position: static; }
  .artist-spotlight { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero-headline { font-size: 2.2rem; }
  .art-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-spotlight { grid-template-columns: 1fr; padding: 24px; }
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .filter-bar-inner { flex-direction: column; align-items: stretch; }
  .filter-search { min-width: unset; }
  .page-hero-stats { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  .art-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-features-inner { grid-template-columns: repeat(2, 1fr); }
}
