/* ============================================================
   RESET.CSS — Garnazelle LP
   Variables globales, reset, base typographique
   ============================================================ */

:root {
  --vert-ecrin:   #1A3021;
  --vert-clair:   #243d2e;
  --marron-ecrin: #3A2A1E;
  --marron-clair: #4A372A;
  --blanc:        #FFFFFF;
  --creme:        #FAF8F5;
  --encre:        #121212;
  --bordure:      #E8E4DF;
  --bordure-dark: rgba(255,255,255,0.12);

  --font-titre:   'Cormorant Garamond', serif;
  --font-corps:   'Assistant', sans-serif;

  --section-v:    100px;
  --container:    1200px;
  --gutter:       5%;

  --transition:   0.4s ease-out;
  --transition-slow: 0.9s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corps);
  font-weight: 300;
  background: var(--blanc);
  color: var(--encre);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.15;
}

p { line-height: 1.8; }

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

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

button, input, textarea {
  font-family: var(--font-corps);
}

ul { list-style: none; }
