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

/* ── Variables CSS ────────────────────────────────────────────── */
:root {
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --card-bg:      #141414;
  --card-border:  rgba(201, 168, 76, 0.15);
  --gold:         #C9A84C;
  --gold-light:   #e0b85c;
  --gold-glow:    rgba(201, 168, 76, 0.25);
  --gold-dim:     rgba(201, 168, 76, 0.07);
  --white:        #f5f5f5;
  --muted:        rgba(245, 245, 245, 0.55);
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black-soft);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain overlay : texture subtile sur tout le site */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
}

/* ── Typographie ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.7rem); }

p { font-weight: 300; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ── Utilitaires couleur ──────────────────────────────────────── */
.text-gold   { color: var(--gold) !important; }
.text-muted-custom { color: var(--muted) !important; }

/* Ligne décorative or */
.gold-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-line-center {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* Diamant séparateur */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3));
}
.gold-divider::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.3));
}
.gold-divider span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
