/* ── Design System ── */
/* Variables, reset, typography — shared across all pages */

:root {
  --bg: #F5F4F0;
  --bg-alt: #EDECE7;
  --bg-paper: #E4E2DB;
  --border: #CCC9BF;
  --border-dk: #A8A59C;
  --text: #141D10;
  --text-mid: #394633;
  --text-soft: #788370;
  --forest: #1D5C3A;
  --forest-lt: #C0D8CA;
  --forest-pale: #DBF0E8;
  --leaf: #5EC491;
  --teal: #0C6E78;
  --teal-lt: #D0EBF0;
  --amber: #B86218;
  --amber-lt: #F5E0CC;
  --amber-dk: #8B4513;
  --white: #FFFFFF;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-dk); }
