*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a; --bg2: #111111; --bg3: #1a1a1a;
  --text: #f0ede8; --muted: #888; --accent: #c8a96e;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── SHARED ── */
section { padding: 6rem 4rem; }
.section-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; margin-bottom: 3rem; }
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── FILTER TABS (shared by archive controls) ── */
.filter-tabs { display: flex; gap: 0; border: 1px solid var(--border); overflow: hidden; }
.filter-btn { background: none; border: none; border-right: 1px solid var(--border); color: var(--muted); font-family: var(--font-body); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.55rem 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: var(--bg3); color: var(--text); }
.filter-btn.active { background: var(--accent); color: #0a0a0a; }
