/* BRF Trädgårdshuset — design tokens
   Nordic minimal + warm/homey, garden greens with clay warm accent. */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap');

:root {
  /* type */
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Söhne", "Inter", system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* easing */
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ─── light theme ─────────────────────────────── */
.theme-light {
  --bg: #F2EFE7;
  --bg-grain: #F2EFE7;
  --surface: #FBF9F3;
  --surface-2: #FFFFFF;
  --surface-sunken: #ECE8DC;
  --ink: #15201A;
  --ink-2: #4A5A4D;
  --ink-3: #8A9588;
  --ink-4: #B9C0B5;
  --border: #E3DECF;
  --border-strong: #CFC8B4;
  --divider: rgba(21,32,26,.06);

  --moss: #2F5A3D;
  --moss-2: #244A30;
  --leaf: #6BA05A;
  --leaf-soft: #C9DDB9;
  --clay: #C77D5A;
  --clay-soft: #EAC9B5;
  --sun: #DDA82C;
  --sun-soft: #F2E1A6;
  --mist: #A9BAAE;

  --shadow-sm: 0 1px 0 rgba(21,32,26,.04), 0 1px 2px rgba(21,32,26,.04);
  --shadow-md: 0 1px 0 rgba(21,32,26,.04), 0 6px 18px rgba(21,32,26,.06);
  --shadow-lg: 0 2px 0 rgba(21,32,26,.04), 0 18px 48px rgba(21,32,26,.10);
}
