/* ============================================================
   RESET.CSS — Reset minimal + variables de design
   ============================================================ */

:root {
  /* Palette */
  --gold: #d8b46c;
  --gold-light: #e8c98a;
  --gold-dark: #b8944f;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --dark: #0a0a0a;
  --dark-soft: #14130f;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-muted-dark: rgba(10, 10, 10, 0.65);

  /* Verre dépoli */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);

  /* Typographie */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Rythme */
  --section-padding: clamp(5rem, 10vw, 9rem);
  --container-width: 1320px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 1.2s;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
