/* ============================================================
   SRI GARUDA DECORATORS — CSS VARIABLES
   Color palette, typography, spacing, and root design tokens
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {

  /* ── Brand Colors ── */
  --champagne-beige: #F2E5C6;
  --sand-gold:       #F2D9A0;
  --burgundy:        #75162D;
  --dark-maroon:     #560B18;
  --deep-wine:       #3B010B;

  /* ── Extended Palette ── */
  --soft-white:      #FAF7F2;
  --off-white:       #F5EFE4;
  --text-dark:       #1A1008;
  --text-mid:        #3D2210;
  --text-muted:      #7A5C3A;
  --gold-accent:     #C9960C;
  --gold-light:      #E8C84A;

  /* ── Role Assignments ── */
  --color-bg-dark:       var(--deep-wine);
  --color-bg-mid:        var(--dark-maroon);
  --color-bg-light:      var(--soft-white);
  --color-accent:        var(--burgundy);
  --color-accent-hover:  #8C1C35;
  --color-gold:          var(--sand-gold);
  --color-text-on-dark:  var(--champagne-beige);
  --color-text-on-light: var(--text-dark);
  --color-text-subtle:   var(--text-muted);
  --color-border-dark:   rgba(242, 217, 160, 0.2);
  --color-border-light:  rgba(86, 11, 24, 0.15);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  /* ── Spacing Scale ── */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2.5rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;

  /* ── Border Radius ── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-pill: 999px;

  /* ── Transitions ── */
  --transition-fast:   0.2s ease;
  --transition-base:   0.35s ease;
  --transition-slow:   0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── Shadows ── */
  --shadow-soft:   0 4px 24px rgba(59, 1, 11, 0.12);
  --shadow-card:   0 8px 40px rgba(59, 1, 11, 0.18);
  --shadow-nav:    0 2px 32px rgba(59, 1, 11, 0.35);

  /* ── Z-index ── */
  --z-base:        1;
  --z-dropdown:    100;
  --z-sticky:      200;
  --z-overlay:     300;
  --z-modal:       400;
  --z-toast:       500;
  --z-float:       600;
}

/* ── Global Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-on-light);
  background-color: var(--color-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}