/* style.css — Sigriwala Brand Design Tokens */

@import url('./base.css');

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.9rem  + 0.5vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 0.95rem + 0.85vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1rem    + 1.5vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* 4px Spacing System */
  --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;
  --space-32: 8rem;

  /* Font Families */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* Sigriwala Brand Palette — Light Mode (ONLY) */
  /* Warm cream backgrounds, deep charcoal text, crimson accent */

  /* Surfaces */
  --color-bg:               #faf8f5;
  --color-surface:          #fff9f3;
  --color-surface-2:        #ffffff;
  --color-surface-offset:   #f3efe9;
  --color-surface-offset-2: #ece7e0;
  --color-surface-dynamic:  #e4dfd8;
  --color-divider:          #d9d3cb;
  --color-border:           #cfc8be;

  /* Text (Deep Charcoal) */
  --color-text:           #1a1a2e;
  --color-text-muted:     #5c5c6e;
  --color-text-faint:     #9c9ca8;
  --color-text-inverse:   #faf8f5;

  /* Primary Accent (Warm Crimson) */
  --color-primary:        #c0392b;
  --color-primary-hover:  #a93226;
  --color-primary-active: #8e2a21;
  --color-primary-highlight: #fce8e6;

  /* Success */
  --color-success:        #437a22;
  --color-success-hover:  #2e5c10;
  --color-success-highlight: #d4dfcc;

  /* Warning */
  --color-warning:        #d4790e;
  --color-warning-hover:  #b5660b;
  --color-warning-highlight: #f9ecd8;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}
