:root {
  --bg: #0e0e10;
  --surface: #17171b;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e4b363;
  --max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand { font-weight: 600; letter-spacing: 0.12em; font-size: 0.95rem; }
.brand span { color: var(--accent); }

.site-header nav { display: flex; gap: 1.75rem; font-size: 0.9rem; }
.site-header nav a { color: var(--muted); transition: color 0.2s ease; }
.site-header nav a:hover { color: var(--text); }

main { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }

.hero {
  padding: clamp(4rem, 14vh, 9rem) 0 clamp(2.5rem, 8vh, 5rem);
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.tagline { color: var(--muted); font-size: clamp(1rem, 2.5vw, 1.35rem); margin-top: 1rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.piece { display: flex; flex-direction: column; gap: 0.6rem; }

.art {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: var(--surface);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.piece:hover .art { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); }

.art-1 { background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b); }
.art-2 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.art-3 { background: linear-gradient(135deg, #eacda3, #d6ae7b); }
.art-4 { background: linear-gradient(135deg, #667eea, #764ba2); }
.art-5 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.art-6 { background: linear-gradient(135deg, #232526, #414345); }

figcaption { color: var(--muted); font-size: 0.85rem; }

.about, .contact { padding: 3.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06); max-width: 640px; }

.about h2, .contact h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about p, .contact p { color: var(--muted); }
.contact a { color: var(--accent); }

.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
