:root {
  /* Colors */
  --color-black: #0a0a0a;
  --color-black-soft: #141414;
  --color-gold: #d4b06a;
  --color-gold-bright: #e8c87a;
  --color-gold-muted: rgba(212, 176, 106, 0.4);
  --color-warm-white: #f7f5f2;
  --color-warm-white-dim: #ebe8e3;
  --color-text: #0a0a0a;
  --color-text-muted: #6b6b6b;
  --color-text-light: #f7f5f2;
  --color-overlay: rgba(10, 10, 10, 0.5);
  --color-overlay-heavy: rgba(10, 10, 10, 0.65);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.6875rem;
  --font-size-sm: 0.8125rem;
  --font-size-base: 0.9375rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: clamp(2rem, 5vw, 3.5rem);
  --font-size-hero: clamp(2.25rem, 6vw, 4.5rem);
  --line-height-tight: 1.15;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.12em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-section: clamp(4rem, 8vw, 7rem);
  --container-max: 1400px;
  --container-padding: clamp(1rem, 4vw, 2.5rem);

  /* Layout */
  --header-height: 72px;
  --header-height-mobile: 64px;
  --header-height-effective: var(--header-height-mobile);
  --space-section-mobile: clamp(1.25rem, 5vw, 2rem);
  --border-radius: 0;
  --border-gold: 1px solid var(--color-gold);
  --border-subtle: 1px solid rgba(10, 10, 10, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-base: 0.35s ease-out;
  --transition-slow: 0.5s ease-out;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(10, 10, 10, 0.06);
  --shadow-card: 0 8px 32px rgba(10, 10, 10, 0.08);

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 1100;
  --z-drawer: 1200;
  --z-search: 1300;
  --z-cart: 1400;
}

@media (min-width: 1024px) {
  :root {
    --header-height-effective: var(--header-height);
  }
}
