/* ==========================================================================
   Design tokens — Kalács Kft. vegán termékkatalógus
   Palette derived from brand logo (wheat/leaf mark) and product photography:
   warm parchment paper, espresso ink, muted wheat gold, sage green, terracotta.
   Contrast-checked against WCAG AA for all text pairings (see build notes).
   ========================================================================== */

:root {
  /* ---- Colour: surfaces ---- */
  --color-paper: #f7f1e6;
  --color-paper-soft: #fbf8f2;
  --color-paper-deep: #efe6d4;
  --color-ink: #2b2016;
  --color-ink-soft: #5c4a3a;
  --color-line: #dcd0bc;
  --color-line-strong: #c9b997;

  /* ---- Colour: accents ---- */
  --color-gold: #b8892b;        /* decorative only — fails AA for text */
  --color-gold-deep: #8c6218;   /* AA-safe for text/links on paper */
  --color-sage: #6b8e4e;
  --color-sage-deep: #435531;
  --color-sage-paper: #eef1e5;
  --color-terracotta: #a8462f;
  --color-terracotta-deep: #7c3520;
  --color-terracotta-paper: #f6e9e4;

  --color-overlay-strong: rgba(30, 21, 12, 0.62);
  --color-overlay-soft: rgba(30, 21, 12, 0.32);
  --color-scrim-top: rgba(20, 14, 8, 0.55);

  --color-focus: #2b6cb0;

  /* ---- Typography ---- */
  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-cover: clamp(2.75rem, 6vw + 1.4rem, 5.5rem);
  --fs-h1: clamp(2.1rem, 4.4vw + 1rem, 3.6rem);
  --fs-h2: clamp(1.5rem, 2vw + 1rem, 2rem);
  --fs-h3: clamp(1.2rem, 1vw + 1rem, 1.4rem);
  --fs-body-lg: clamp(1.05rem, 0.4vw + 0.95rem, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  --tracking-wide: 0.09em;
  --tracking-wider: 0.16em;

  /* ---- Spacing ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* ---- Shape ---- */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* ---- Elevation (warm-tinted, never pure black) ---- */
  --shadow-card: 0 10px 30px -14px rgba(43, 32, 22, 0.35);
  --shadow-nav: 0 2px 18px -6px rgba(43, 32, 22, 0.28);
  --shadow-overlay: 0 20px 60px -20px rgba(20, 14, 8, 0.45);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.25, 1);
  --dur-page: 620ms;
  --dur-fast: 220ms;
  --dur-slow: 900ms;

  /* ---- Layout ---- */
  --content-max: 1180px;
  --chrome-height: 64px;
  --pager-height: 76px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-page: 1ms;
    --dur-fast: 1ms;
    --dur-slow: 1ms;
  }
}
