/* ============================================================
   DESIGN TOKENS — Felipe G. Santos Academic Website
   ============================================================ */
:root {
  /* Foundation */
  --bg:           #F6F2EB;
  --bg-alt:       #F2ECE0;
  --bg-card:      #FBF8F2;

  /* Text */
  --text:         #1A1410;
  --text-secondary: #5C534C;
  --text-muted:   #9A8C80;
  --text-inv:     #EDE6D8;

  /* Accent (rust/terra) */
  --accent:       #A0462B;
  --accent-hover: #7F3522;
  --accent-soft:  #E8C9BF;

  /* Borders */
  --border:       #DDD4C8;
  --border-strong:#C9BDA9;

  /* Semantic */
  --success:      #56735F;
  --info:         #5C728A;
  --error:        #8B2C1F;

  /* Focus */
  --focus-ring:   #C97A5D;

  /* Legacy aliases — map to new palette for backwards compat */
  --surface:      var(--bg-card);
  --surface2:     var(--bg-card);
  --surface-off:  var(--bg-alt);
  --divider:      var(--border);
  --text-faint:   var(--text-muted);

  /* Keep teal as accent for pub badge colors (no change to hue) */
  --teal:         var(--accent);
  --teal-hover:   var(--accent-hover);
  --teal-active:  #5C2B1A;
  --teal-hi:      var(--accent-soft);
  --teal-bg:      color-mix(in oklab, var(--accent) 8%, var(--bg));

  /* Terra = same as accent */
  --terra:        var(--accent);
  --terra-hover:  var(--accent-hover);
  --terra-hi:     var(--accent-soft);

  /* Publication type colours — unchanged */
  --pub-book:     #6B4E9A;
  --pub-book-bg:  #EDE8F5;
  --pub-article:  #2C5F7A;
  --pub-article-bg: #E0EEF5;
  --pub-chapter:  #A0462B;
  --pub-chapter-bg: #F5EBE7;
  --pub-review:   #8A6A1E;
  --pub-review-bg:#F5EEE0;
  --pub-wip:      #5C728A;
  --pub-wip-bg:   #E4EDF5;

  /* Radius, spacing, type, shadows — unchanged from previous */
  --r-sm:  0.25rem;
  --r-md:  0.375rem;
  --r-lg:  0.625rem;
  --r-xl:  1rem;
  --r-full:9999px;

  --shadow-sm: 0 1px 3px rgba(43,38,33,.06);
  --shadow-md: 0 4px 12px rgba(43,38,33,.09);
  --shadow-lg: 0 12px 32px rgba(43,38,33,.12);

  --ease: 180ms cubic-bezier(.16,1,.3,1);
  --ease-slow: 320ms cubic-bezier(.16,1,.3,1);

  --sp1:.25rem; --sp2:.5rem; --sp3:.75rem; --sp4:1rem;
  --sp5:1.25rem; --sp6:1.5rem; --sp8:2rem; --sp10:2.5rem;
  --sp12:3rem; --sp16:4rem; --sp20:5rem; --sp24:6rem;

  --tx-xs:  clamp(.75rem,.7rem + .25vw,.8125rem);
  --tx-sm:  clamp(.8125rem,.78rem + .3vw,.9375rem);
  --tx-base:clamp(1rem,.95rem + .25vw,1.0625rem);
  --tx-lg:  clamp(1.125rem,1rem + .6vw,1.375rem);
  --tx-xl:  clamp(1.375rem,1.1rem + 1.2vw,2rem);
  --tx-2xl: clamp(1.875rem,1.3rem + 2.2vw,3rem);
  --tx-3xl: clamp(2.25rem,1.4rem + 3vw,3.5rem);

  --w-narrow:640px; --w-default:960px; --w-wide:1180px;

  --font-display:'Playfair Display',Georgia,serif;
  --font-body:'Inter','Helvetica Neue',Arial,sans-serif;
}

[data-theme='dark'] {
  /* Foundation */
  --bg:           #1C1815;
  --bg-alt:       #231E1A;
  --bg-card:      #2A2420;

  /* Text */
  --text:         #EDE6D8;
  --text-secondary: #B8AC9C;
  --text-muted:   #988B7D;
  --text-inv:     #1A1410;

  /* Accent */
  --accent:       #D2764F;
  --accent-hover: #E89068;
  --accent-soft:  #4A2B20;

  /* Borders */
  --border:       #3A322C;
  --border-strong:#5A4F44;

  /* Semantic */
  --success:      #8FA888;
  --info:         #8DA1BC;
  --error:        #D46B5A;

  /* Focus */
  --focus-ring:   #E89068;

  /* Legacy aliases */
  --surface:      var(--bg-card);
  --surface2:     var(--bg-card);
  --surface-off:  var(--bg-alt);
  --divider:      var(--border);
  --text-faint:   var(--text-muted);

  --teal:         var(--accent);
  --teal-hover:   var(--accent-hover);
  --teal-active:  #F0B090;
  --teal-hi:      var(--accent-soft);
  --teal-bg:      color-mix(in oklab, var(--accent) 12%, var(--bg));

  --terra:        var(--accent);
  --terra-hover:  var(--accent-hover);
  --terra-hi:     var(--accent-soft);

  /* Publication type colours — dark mode */
  --pub-book:     #B39FD4;
  --pub-book-bg:  #2A2035;
  --pub-article:  #7AB0C8;
  --pub-article-bg: #1A2E38;
  --pub-chapter:  #D2764F;
  --pub-chapter-bg: #2E1E18;
  --pub-review:   #C9A44A;
  --pub-review-bg:#2A2210;
  --pub-wip:      #8DA1BC;
  --pub-wip-bg:   #1A2535;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.25);
  --shadow-md: 0 4px 12px rgba(0,0,0,.35);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.45);
}
