/* ===========================================================
   Rico Sabor — Shared design tokens & global reset
   Loaded by every page. Page-specific styles live in their
   own stylesheet (home.css, menu.css).
   =========================================================== */
:root {
    /* Brand palette — shared across all pages */
    --bg:        #0f0b08;
    --card:      #1c1612;
    --ink:       #f4e6c1;
    --ink-soft:  #c9b896;
    --muted:     #8a7a5e;
    --accent:    #c9a14a;
    --accent-2:  #8b1e1e;

    /* Typography — change a typeface here to update every page */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--ink);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
