/* ============================================================
   BAZAR ORGANISÉ — CSS GLOBAL V4
   Style: Draftline/Framer — Minimal, Editorial, Light
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #FAFAFA;
  --noir: #111111;
  --gris1: #444444;
  --gris2: #888888;
  --gris3: #BBBBBB;
  --border: #E5E5E5;
  --accent: #111111;
  --font: 'Inter', -apple-system, sans-serif;
  --nav-h: 60px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--noir);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}

.nav-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  color: var(--gris2);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--noir);
  background: rgba(0,0,0,0.04);
}

/* ── PAGE WRAPPER ─────────────────────────────── */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── SECTION LABEL ────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris2);
  margin-bottom: 8px;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gris3);
  margin-top: 80px;
}

.footer a { color: var(--gris2); text-decoration: none; }
.footer a:hover { color: var(--noir); }

/* ── UTILITY ──────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ── RESPONSIVE NAV ───────────────────────────── */
@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav-links a { padding: 5px 7px; font-size: 11px; }
}
