/* ===== BIJOUX — glassmorphism sombre, or et verre ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@300;400;500&display=swap');
:root {
  --bg: #0b0e1a; --fg: #ece7dc; --accent: #d4af37; --accent2: #f5d76e;
  --card: rgba(255, 255, 255, 0.06); --border: rgba(212, 175, 55, 0.25);
  --danger: #e5484d; --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.7;
  min-height: 100vh; position: relative; overflow-x: hidden;
}
/* ── orbes dores animes ── */
body::before, body::after {
  content: ''; position: fixed; border-radius: 50%; z-index: -1;
  filter: blur(90px); opacity: .45; pointer-events: none;
}
body::before {
  width: 480px; height: 480px; top: -120px; right: -100px;
  background: radial-gradient(circle, #d4af37 0%, #8a6d1f 45%, transparent 70%);
  animation: orbe1 16s ease-in-out infinite alternate;
}
body::after {
  width: 380px; height: 380px; bottom: -140px; left: -80px;
  background: radial-gradient(circle, #6d5313 0%, #3a2c0a 50%, transparent 72%);
  animation: orbe2 20s ease-in-out infinite alternate;
}
@keyframes orbe1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-70px, 60px) scale(1.15); } }
@keyframes orbe2 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px, -50px) scale(1.1); } }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: #f7f2e7; line-height: 1.15; }
a { color: var(--accent2); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.4rem; }

/* ── verre depoli ── */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .08);
  padding: 1.6rem;
}
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 14, 26, .65); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
header.site .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1rem; padding-top: .9rem; padding-bottom: .9rem; }
header.site .brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: .12em; color: #f7f2e7; text-transform: uppercase; }
header.site .brand em { color: var(--accent); font-style: normal; }
header.site nav { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: .3rem 1.4rem; }
header.site nav a { color: #cfc7b5; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
header.site nav a:hover { color: var(--accent2); }

.btn {
  display: inline-block; padding: .7rem 1.7rem; border: 1px solid var(--accent);
  border-radius: 999px; background: linear-gradient(120deg, rgba(212,175,55,.92), rgba(245,215,110,.92));
  color: #14100a; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; font-size: .85rem; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, .35); color: #14100a; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.6rem; padding: 1.6rem 0; }
.price { color: var(--accent2); font-weight: 500; font-size: 1.15rem; letter-spacing: .04em; }
.prose { max-width: 720px; color: #d8d1c2; }
.prose h2 { margin-top: 2rem; }

/* ── hero + shimmer ── */
.hero { text-align: center; padding: 5rem 1rem 3.5rem; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); margin: 0 0 1rem;
  background: linear-gradient(110deg, #f7f2e7 30%, var(--accent2) 45%, #f7f2e7 60%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }
.hero p.lead { color: #cfc7b5; font-size: 1.12rem; max-width: 620px; margin: 0 auto 1.8rem; }

input, select, textarea {
  background: rgba(255,255,255,.07); border: 1px solid var(--border); border-radius: 12px;
  color: var(--fg); padding: .65rem .95rem; font-family: 'Jost', sans-serif;
}
input:focus, textarea:focus { outline: 1px solid var(--accent); }
footer.site { margin-top: 4.5rem; padding: 2rem 0; border-top: 1px solid var(--border); color: #8d8674; font-size: .85rem; text-align: center; letter-spacing: .05em; }
/* v1.1.1 : panier lisible (texte fonce en tout temps) + logo gemme */
header.site nav a.btn, header.site nav a.btn:hover { color: #14100a; }
.brand-gem { width: 26px; height: 26px; vertical-align: -4px; margin-right: .45rem;
  filter: drop-shadow(0 0 9px rgba(212, 175, 55, .7)); }
