/* ============================================
   LE TEMPS RETROUVÉ — Base : tokens, reset, layout, typographie, boutons
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Neutrals */
  --white:       #FFFFFF;
  --cream:       #FAF7F3;
  --cream-deep:  #F2EDE6;
  --linen:       #EDE4D8;

  /* Rose / pêche */
  --rose-pale:   #F0D9D2;
  --rose:        #DBA99E;
  --rose-deep:   #C07D72;

  /* Vert naturel (ex-taupe) */
  --taupe-pale:  #D4E4CF;
  --taupe:       #7A9E76;
  --taupe-deep:  #4E7A48;

  /* Vert sauge */
  --sage-pale:   #D8E4D4;
  --sage:        #8FAE86;
  --sage-deep:   #3e5e3a;

  /* Étang */
  --pond:        #7AACB8;
  --pond-pale:   #C8DFE5;

  /* Brun doux */
  --brown-pale:  #E4D4C0;
  --brown:       #A07850;
  --brown-deep:  #6E4E30;

  /* Text */
  --text-dark:   #3C2E28;
  --text-mid:    #6B5550;
  --text-light:  #9C8880;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(1.5rem, 3vw, 2.5rem);
  --radius:      6px;
  --radius-lg:   14px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 72px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- LAYOUT ---------- */
.container {
  width: min(90%, 1140px);
  margin-inline: auto;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: .6rem;
}
.eyebrow.center { text-align: center; }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section__title.center { text-align: center; }

.section__intro {
  max-width: 54ch;
  margin-inline: auto;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--sage-deep);
  color: var(--white);
  border: 1.5px solid var(--sage-deep);
}
.btn--primary:hover {
  background: var(--taupe-deep);
  border-color: var(--taupe-deep);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn--nav {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--taupe);
  padding: .5rem 1.4rem;
  font-size: .8rem;
}
.btn--nav:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }
.btn--sm {
  background: var(--sage-pale);
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
  padding: .5rem 1.2rem;
  font-size: .8rem;
}
.btn--sm:hover { background: var(--sage-deep); color: var(--white); }
.btn--full { width: 100%; text-align: center; }
