/* ============================================================
   SANGEETHA — Design Tokens
   All colors, fonts, spacing in one place.
   Change here → changes everywhere.
============================================================ */
:root {
    /* Brand Colors */
    --cream:          #F6E7C8;
    --cream-dark:     #EDD9A3;
    --off-white:      #FDFAF5;
    --deep-maroon:    #5A0115;
    --maroon:         #80051D;
    --gold:           #D4A437;
    --gold-mid:       #C89834;
    --gold-warm:      #C8960C;
    --dark-brown:     #3D1F0D;
    --medium-brown:   #5C3D2A;
    --warm-taupe:     #C4A882;
    --warm-linen:     #E8D5B0;
    --hero-dark:      #1A0A00;

    /* Typography */
    --font-heading:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'Lexend Deca', system-ui, sans-serif;

    /* Nav */
    --nav-height:     74px;

    /* Layout */
    --container-max:  1440px;
    --section-py:     96px;
    --section-py-sm:  64px;

    /* Radii */
    --radius:         6px;
    --radius-pill:    100px;

    /* Shadows */
    --shadow-sm:      0 2px 8px rgba(61,31,13,0.10);
    --shadow-md:      0 4px 20px rgba(61,31,13,0.15);

    /* Transitions */
    --transition:     0.22s ease;
}
