/* Thai-Asia Wattens — design tokens
   Palette sampled from the printed menu, version 03.2026
   (research/images/menu/gm_004.jpg, rg_menu_012.jpg). */

:root {
  /* brand */
  --ta-ink:            #101010;  /* menu ground, near-black */
  --ta-ink-soft:       #202020;  /* the card's lighter textured black */
  --ta-gold:           #B9AE7C;  /* wordmark gold, brightened from the print sample #A59D71 */
  --ta-gold-deep:      #A59D71;  /* as measured off the card */
  --ta-chili:          #C2452F;  /* the "scharf" mark */
  --ta-cream:          #EDE8DA;  /* the light caps above the wordmark */

  /* surfaces — light theme */
  --ta-bg:             #FBF8F2;
  --ta-surface:        #FFFFFF;
  --ta-surface-alt:    #F3EEE3;
  --ta-border:         #E0D8C7;
  --ta-text:           #1C1A16;
  --ta-text-muted:     #6B655A;

  /* type */
  --ta-font-display:   'Times New Roman', Times, Georgia, 'Liberation Serif', serif;
  --ta-font-body:      system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ta-tracking-caps:  0.22em;

  /* rhythm */
  --ta-radius:         4px;
  --ta-space:          8px;
  --ta-maxw:           1120px;
}

:root[data-theme="dark"],
:root:not([data-theme="light"]) {
  /* dark surfaces reuse the menu's own palette — this is the restaurant's real look */
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ta-bg:           #101010;
    --ta-surface:      #1A1A1A;
    --ta-surface-alt:  #202020;
    --ta-border:       #33302A;
    --ta-text:         #EDE8DA;
    --ta-text-muted:   #A39C8C;
  }
}

:root[data-theme="dark"] {
  --ta-bg:             #101010;
  --ta-surface:        #1A1A1A;
  --ta-surface-alt:    #202020;
  --ta-border:         #33302A;
  --ta-text:           #EDE8DA;
  --ta-text-muted:     #A39C8C;
}
