/* ============================================
   ESTUDIO JURÍDICO ARCAL — Design Tokens
   ============================================ */

:root {
  /* Brand */
  --garnet:         #7B1D2A;
  --garnet-deep:    #5C1520;
  --garnet-mid:     #9B2435;
  --garnet-tint:    #F2EAEB;
  --garnet-tint-2:  #E8D8DA;

  /* Neutrals */
  --bg:             #F5F4F1;
  --bg-warm:        #EEECE8;
  --surface:        #FFFFFF;
  --border:         #E0DDD8;
  --border-light:   #EBEBEB;
  --rule:           #D5D2CC;

  /* Text */
  --ink:            #1A1918;
  --ink-secondary:  #5C5854;
  --ink-tertiary:   #8C8884;

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --max-width:      1160px;
  --nav-height:     64px;
  --strip-height:   38px;

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-mid:  250ms;
}
