/* Design tokens: amber, forge black, warm white */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Brand palette */
  --color-amber:          #FF8F00;
  --color-amber-hover:    #E38101;
  --color-amber-light:    #FFB347;
  --color-amber-muted:    rgba(255, 143, 0, 0.12);
  --color-amber-glow:     rgba(255, 143, 0, 0.06);

  /* Accessible text amber for light surfaces: 6.0:1 on white, passes WCAG AA */
  --color-amber-text:     #A04A00;

  /* Dark bands */
  --color-forge:          #1A1200;
  --color-forge-mid:      #2B1F00;
  --color-forge-surface:  #231900;

  /* Backgrounds */
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F6F8F5;
  --color-surface:        #FFFEF9;
  --color-border:         #E2DCCF;
  --color-border-subtle:  #EDE8DC;

  /* Text colors: all verified >= 4.5:1 against respective surfaces */
  --color-text-primary:       #1A1200;
  --color-text-secondary:     #585858;
  --color-text-tertiary:      #68604F;
  --color-text-on-amber:      #000000;
  --color-text-on-dark:       #F5EFE0;
  --color-text-on-dark-muted: #C5BDAE;

  /* Sand tones */
  --color-sand:           rgba(190, 177, 144, 0.5);
  --color-sand-light:     rgba(221, 208, 173, 0.3);

  /* Typography */
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Jost', sans-serif;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   2rem;       /* 32px */
  --text-4xl:   2.75rem;    /* 44px */
  --text-5xl:   3.75rem;    /* 60px */
  --text-6xl:   5rem;       /* 80px */
  --text-hero:  6.5rem;     /* 104px */

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Section vertical rhythm */
  --section-gap: 7rem;
  --section-gap-sm: 4rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* Corner radius */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-none: 0px;

  /* Motion tokens */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   180ms;
  --dur-base:   280ms;
  --dur-slow:   450ms;
  --dur-reveal: 680ms;

  /* Layering */
  --z-nav:    100;
  --z-modal:  200;
  --z-float:  300;
}
