/* ==========================================================================
   ALIZAY FABRICS — DESIGN TOKENS (v2)
   Strict 2-color system: pure black + gold only. No white anywhere.
   Hierarchy is built with opacity/shade variations of these two colors,
   not additional hues. Display font switched to Cinzel (engraved, jewelry-
   house feel) paired with Poppins for clean, modern body text.
   ========================================================================== */

:root {
  /* Color — pure black base, gold as the only accent/foreground color.
     Text hierarchy on black comes from gold opacity, not gray/white. */
  --c-black: #000000;
  --c-black-soft: #0d0d0d;
  --c-black-panel: #121212;
  --c-gold: #d4af37;
  --c-gold-dark: #b8860b;
  --c-gold-light: #e8cc6a;

  /* Legacy alias names kept so component CSS didn't need a full rewrite —
     both now resolve within the black/gold system only. */
  --c-white: var(--c-gold);
  --c-ivory: var(--c-black);
  --c-gray-light: var(--c-black-panel);
  --c-oxblood: var(--c-gold-dark);
  --c-line: rgba(212, 175, 55, 0.28);

  /* Type: Cinzel is an engraved Roman-inspired serif — reads as jewelry/
     couture, much stronger on a black+gold palette than a generic serif.
     Poppins is a clean geometric sans for body copy and UI labels. */
  --f-display: 'Cinzel', 'Playfair Display', serif;
  --f-body: 'Poppins', 'Jost', sans-serif;
  --f-label: 'Poppins', sans-serif;

  --fs-hero: clamp(2.6rem, 7.5vw, 6.6rem);
  --fs-h1: clamp(2.1rem, 4.6vw, 3.6rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.6rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --fs-label: 0.72rem;

  --lh-tight: 1.15;
  --lh-normal: 1.7;
  --ls-label: 0.2em;

  /* Layout */
  --container-max: 1400px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(3.5rem, 8vw, 7rem);
  --radius-soft: 4px;

  /* Motion */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.3s;
  --dur-med: 0.6s;
  --dur-slow: 1.1s;

  /* Elevation / glass — gold-tinted glass on black, never white-tinted */
  --glass-bg: rgba(212, 175, 55, 0.06);
  --glass-border: rgba(212, 175, 55, 0.25);
  --shadow-luxury: 0 30px 60px -20px rgba(0, 0, 0, 0.7);

  /* Text opacity scale on black backgrounds (replaces "gray" text) */
  --gold-100: rgba(212, 175, 55, 1);
  --gold-80: rgba(212, 175, 55, 0.8);
  --gold-60: rgba(212, 175, 55, 0.6);
  --gold-40: rgba(212, 175, 55, 0.4);
  --gold-20: rgba(212, 175, 55, 0.2);
  --gold-10: rgba(212, 175, 55, 0.1);
}
