/* ─────────────────────────────────────────
   base.css — Body, typography, cursor
   Palette luxe : or champagne & ivoire
───────────────────────────────────────── */
body {
  background: var(--ivory);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  cursor: none;
}

/* ── Curseur bague/alliance ── */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3C!-- Anneau principal fin --%3E%3Ccircle cx='24' cy='28' r='13' stroke='%23C8A050' stroke-width='2.5' fill='none'/%3E%3C!-- Reflet interieur anneau --%3E%3Ccircle cx='24' cy='28' r='10' stroke='%23E8C870' stroke-width='0.6' fill='none' opacity='0.4'/%3E%3C!-- Tige du chaton --%3E%3Crect x='22' y='12' width='4' height='8' fill='%23C8A050' rx='1'/%3E%3C!-- Base du chaton --%3E%3Cellipse cx='24' cy='20' rx='6' ry='2.5' fill='%23C8A050'/%3E%3C!-- Pierre (diamant) --%3E%3Cpolygon points='24,8 29,14 24,18 19,14' fill='%23F0F4FF' opacity='0.95'/%3E%3Cpolygon points='24,8 29,14 24,12' fill='white' opacity='0.8'/%3E%3Cpolygon points='24,12 29,14 24,18' fill='%23C8D8F0' opacity='0.6'/%3E%3Cpolygon points='24,12 19,14 24,18' fill='%23A0B8E0' opacity='0.5'/%3E%3C!-- Reflet brillant sur anneau --%3E%3Cpath d='M 14 24 Q 16 20 20 22' stroke='%23F0D880' stroke-width='1' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.cursor.cursor--hover  { transform: translate(-50%, -50%) scale(1.5); }
.cursor.cursor--click  { transform: translate(-50%, -50%) scale(0.85); }

.cursor-follower {
  position: fixed;
  width: 56px; height: 56px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'%3E%3Ccircle cx='30' cy='30' r='27' stroke='%23D4B896' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='30' cy='30' r='22' stroke='%23D4B896' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.cursor-follower.cursor-follower--hover {
  width: 72px; height: 72px;
  opacity: 0.7;
}

/* ── Utilitaires ── */
.section-label {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4vw, 6.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 38ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--transition-med), color var(--transition-med), border-color var(--transition-med);
  width: fit-content;
}

.btn-primary:hover {
  gap: 1.8rem;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-primary .arrow { font-size: 2.0rem; }
