:root {
  /* Brand — logo gold + warm cream (luxury food palette) */
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dark: #9a7b1a;
  --gold-soft: rgba(201, 162, 39, 0.14);

  --cream: #f9f8f4;
  --cream-deep: #f0ebe2;
  --cream-warm: #f5f0e6;

  --ink: #1c1a17;
  --ink-soft: #3d3830;

  --bg: #f9f8f4;
  --bg-alt: #f3efe6;
  --surface: #ffffff;
  --surface-2: #fcfaf6;
  --surface-3: #e8e2d6;

  --text: #1c1a17;
  --text-muted: #5e584f;
  --text-dim: #857c70;

  --border: rgba(154, 123, 26, 0.22);
  --border-strong: rgba(154, 123, 26, 0.42);
  --border-subtle: rgba(28, 26, 23, 0.08);

  --success: #4caf50;
  --error: #e05656;

  /* Typography */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 920px;
  --header-height: 140px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-md: 0 4px 20px rgba(28, 26, 23, 0.08);
  --shadow-lg: 0 12px 36px rgba(28, 26, 23, 0.1);
  --shadow-gold: 0 6px 22px rgba(201, 162, 39, 0.22);

  --transition-fast: 150ms ease;
  --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

@media (max-width: 991px) {
  :root {
    --header-height: 96px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 78px;
  }
}
