/* ============================================================
   AGENCY BACKBONE — variables.css
   ============================================================ */

@font-face {
  font-family: 'UntitledSans';
  src: url('../fonts/TestUntitledSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UntitledSans';
  src: url('../fonts/TestUntitledSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UntitledSans';
  src: url('../fonts/TestUntitledSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UntitledSans';
  src: url('../fonts/TestUntitledSans-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UntitledSerif';
  src: url('../fonts/TestUntitledSerif-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {

  --bg-primary:   #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary:  #111111;
  --bg-card:      #0d0d0d;
  --border:       #1e1e1e;
  --border-light: #2a2a2a;

  --text-primary:   #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted:     #606060;

  --gold:        #b58b3e;
  --gold-light:  #d4a853;
  --gold-subtle: rgba(181, 139, 62, 0.10);

  --shadow-gold:   0 0 40px rgba(181, 139, 62, 0.18);
  --gradient-gold: linear-gradient(135deg, #b58b3e 0%, #d4a853 100%);

  --font-sans:  'UntitledSans',  system-ui, sans-serif;
  --font-serif: 'UntitledSerif', Georgia, serif;

  --size-xs:   0.75rem;
  --size-sm:   0.875rem;
  --size-base: 1rem;
  --size-md:   1.125rem;
  --size-lg:   1.375rem;
  --size-xl:   1.75rem;
  --size-2xl:  2.25rem;
  --size-3xl:  3rem;
  --size-4xl:  3.75rem;
  --size-5xl:  4.75rem;

  --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;

  --max-width:        1200px;
  --max-width-narrow: 780px;
  --gutter:           clamp(1.25rem, 5vw, 2.5rem);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --z-nav:     100;
  --z-overlay: 200;
}