@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
  /* Fond — parchemin chaud */
  --bg-deep: #1e1a15;
  --bg-card: #272118;
  --bg-card-hover: #30291f;

  /* Or — chaud, riche, assorti au logo */
  --gold: #d4ad45;
  --gold-light: #e8c258;
  --gold-dim: #b09a6e;
  --gold-glow: rgba(212, 173, 69, 0.3);

  /* Texte */
  --text: #ede6d6;
  --text-muted: #a89880;
  --text-dim: #70655a;

  /* Accents */
  --red: #c44040;
  --green: #4a9a5a;
  --blue: #6aafe0;

  /* Bordures */
  --border: rgba(212, 173, 69, 0.12);
  --border-hover: rgba(212, 173, 69, 0.35);

  /* Typo */
  --font-title: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;

  /* Dimensions */
  --max-width: 1200px;
  --nav-height: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}
