/* Markenneutrale Basis-Tokens. Übernommen aus Marberg/_shared/Design/tokens/core-colors.css,
   core-typography.css, core-spacing.css (Sand-Skala, Type-Scale, Spacing/Radius/Shadow),
   hier zu einer Datei zusammengeführt. Fonts lokal gehostet (assets/fonts/). */

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand-variable-latin.woff2") format("woff2-variations");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-variable-latin.woff2") format("woff2-variations");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Sand-Neutralpalette (warm) */
  --sand-50: #FBF9F4;
  --sand-100: #F5F1E8;
  --sand-200: #EAE3D3;
  --sand-300: #DAD0B8;
  --sand-500: #AFA486;
  --sand-600: #8C8371;
  --sand-700: #655F52;
  --ink: #201C1D;
  --ink-mute: #C9BFA8;
  --white: #FFFFFF;

  /* Signal (nur Erfolgsmeldungen) */
  --ok-bg: #F1F8ED;
  --ok-border: #BFE0A0;
  --ok-text: #2F6E24;

  /* Typografie */
  --font-display: "Quicksand", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  /* Spacing-Skala */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radien */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Schatten (warm getönt, kein reines Schwarz) */
  --shadow-card: 0 2px 10px rgba(32, 28, 29, 0.04);
  --shadow-card-hover: 0 18px 40px rgba(32, 28, 29, 0.09);
  --shadow-image: 0 24px 56px rgba(32, 28, 29, 0.13);

  /* Layout */
  --content-max: 1180px;
  --transition: 180ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0ms;
  }
}
