/* PAY-18 Sapin · Neo-Editorial · Saint-Raymond Paysagiste Bordeaux */
:root{
  /* Palette skin imposee */
  --bg: #EFF2EC;
  --bg-alt: #E5E9DF;
  --surface: #FBFCF8;
  --surface-dark: #1B2620;
  --text: #222A24;
  --text-2: rgba(34,42,36,0.72);
  --text-mute: rgba(34,42,36,0.52);
  --ink: #222A24;
  --border: rgba(34,42,36,0.14);
  --border-strong: rgba(34,42,36,0.28);

  --accent: #29402F;       /* vert sapin profond */
  --accent-2: #4A6850;     /* vert sauge derivee pour surfaces inverse */
  --accent-soft: rgba(41,64,47,0.10);
  --accent-on-dark: #C8D8C2; /* vert clair sur surface sombre */
  --primary: #1B2620;
  --wa-green: #25D366;

  /* Polices imposees */
  --ff-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --ff-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-ui: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rayons */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Layout */
  --container: 1180px;
  --header-h: 76px;
  --header-h-mobile: 64px;

  /* Z-index (header > menu pour qu'on puisse refermer) */
  --z-header: 1100;
  --z-menu: 1000;
  --z-modal: 1300;
  --z-fab: 900;

  /* Transitions */
  --t-fast: .18s ease;
  --t-base: .35s ease;
}

::selection{ background: var(--accent); color: #F4F7EE; }

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }
