/* ─── Design Tokens — Naomi Benson ─────────────────────────────────────── */
/* Art direction: athletic, bold, confidence-forward. Deep court black     */
/* surfaces with a vibrant Cincinnati Bearcat red accent and warm gold     */
/* secondary. High-contrast, kinetic energy, editorial feel.               */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #f5f4f0;
  --color-surface: #faf9f7;
  --color-surface-2: #ffffff;
  --color-surface-offset: #ede9e3;
  --color-surface-offset-2: #e3dfd8;
  --color-surface-dynamic: #d8d3cc;
  --color-divider: #ccc8c0;
  --color-border: #c0bbb2;

  /* Text */
  --color-text: #120f0a;
  --color-text-muted: #6b6560;
  --color-text-faint: #b0ada8;
  --color-text-inverse: #faf9f7;

  /* Bearcat Red — primary accent */
  --color-primary: #e00000;
  --color-primary-hover: #b50000;
  --color-primary-active: #8c0000;
  --color-primary-highlight: #fce0e0;

  /* Gold — secondary */
  --color-gold: #c8922a;
  --color-gold-hover: #a07020;
  --color-gold-highlight: #f5e8d0;

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

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(18, 15, 10, 0.08);
  --shadow-md: 0 4px 16px rgba(18, 15, 10, 0.10);
  --shadow-lg: 0 12px 40px rgba(18, 15, 10, 0.14);

  /* Type */
  --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.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 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);

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

  /* Layout */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'],
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e0c09;
    --color-surface: #141210;
    --color-surface-2: #1a1714;
    --color-surface-offset: #1f1c18;
    --color-surface-offset-2: #26221d;
    --color-surface-dynamic: #302c26;
    --color-divider: #2a2620;
    --color-border: #3a362f;
    --color-text: #e8e5df;
    --color-text-muted: #8a857d;
    --color-text-faint: #504c45;
    --color-text-inverse: #0e0c09;
    --color-primary: #ff4040;
    --color-primary-hover: #ff6a6a;
    --color-primary-active: #ff8585;
    --color-primary-highlight: #3d1010;
    --color-gold: #e8a840;
    --color-gold-hover: #f0bc60;
    --color-gold-highlight: #3d2e10;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
}

[data-theme='dark'] {
  --color-bg: #0e0c09;
  --color-surface: #141210;
  --color-surface-2: #1a1714;
  --color-surface-offset: #1f1c18;
  --color-surface-offset-2: #26221d;
  --color-surface-dynamic: #302c26;
  --color-divider: #2a2620;
  --color-border: #3a362f;
  --color-text: #e8e5df;
  --color-text-muted: #8a857d;
  --color-text-faint: #504c45;
  --color-text-inverse: #0e0c09;
  --color-primary: #ff4040;
  --color-primary-hover: #ff6a6a;
  --color-primary-active: #ff8585;
  --color-primary-highlight: #3d1010;
  --color-gold: #e8a840;
  --color-gold-hover: #f0bc60;
  --color-gold-highlight: #3d2e10;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}
