/* ============================================================
   Designer Metals — CSS Custom Properties
   All design tokens. Import this first.
   ============================================================ */

:root {
  /* ── Brand Colors (Lookbook dark palette) ─────────────────── */
  --color-primary:        #0a0a0a;   /* Near-black base */
  --color-primary-light:  #1E1E1E;   /* Charcoal mid */
  --color-primary-dark:   #000000;   /* Pure black */
  --color-accent:         #C8922A;   /* Warm gold/amber */
  --color-accent-light:   #D4A84B;   /* Lighter gold hover */
  --color-accent-dark:    #A07520;   /* Darker gold active */

  /* ── Neutrals (dark-first) ─────────────────────────────────── */
  --color-dark:           #f0f0f0;   /* Light headings on dark */
  --color-body:           #d0d0d0;   /* Light body text */
  --color-muted:          #9A9590;   /* Warm gray secondary */
  --color-border:         rgba(255,255,255,0.08); /* Subtle glass border */
  --color-bg-light:       #141414;   /* Charcoal section bg */
  --color-bg-mid:         #1E1E1E;   /* Medium dark bg */
  --color-bg-white:       #0a0a0a;   /* Base dark */
  --color-heading:        #f0f0f0;   /* Light heading text */

  /* ── Feedback ─────────────────────────────────────────────── */
  --color-success:        #059669;
  --color-warning:        #D97706;
  --color-error:          #DC2626;

  /* ── Typography ───────────────────────────────────────────── */
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'Courier New', monospace;

  --font-weight-normal:   400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;
  --font-weight-extrabold:800;
  --font-weight-black:    900;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.25rem;    /* 36px */
  --text-5xl:   3rem;       /* 48px */
  --text-6xl:   3.75rem;    /* 60px */
  --text-7xl:   4.5rem;     /* 72px */

  --leading-tight:  1.2;
  --leading-snug:   1.375;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  --tracking-tight:  -0.025em;
  --tracking-normal:  0;
  --tracking-wide:    0.025em;
  --tracking-wider:   0.05em;
  --tracking-widest:  0.1em;

  /* ── Spacing ──────────────────────────────────────────────── */
  --space-1:   0.25rem;   /* 4px  */
  --space-2:   0.5rem;    /* 8px  */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* ── Layout ───────────────────────────────────────────────── */
  --container-max:  1440px;
  --container-wide: 1600px;
  --container-narrow: 800px;
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
  --nav-height: 80px;

  /* ── Border Radius ────────────────────────────────────────── */
  --radius-sm:  0.25rem;
  --radius:     0.5rem;
  --radius-md:  0.625rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────────── */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.2);
  --shadow-2xl: 0 25px 80px rgba(0,0,0,0.25);
  --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);

  /* ── Transitions ──────────────────────────────────────────── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-bounce: 300ms cubic-bezier(0.34,1.56,0.64,1);

  /* ── Z-Index ──────────────────────────────────────────────── */
  --z-base:    1;
  --z-raised:  10;
  --z-dropdown:100;
  --z-sticky:  200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-toast:   500;

  /* ── Component Tokens ─────────────────────────────────────── */
  /* Buttons */
  --btn-height-sm:  2.25rem;
  --btn-height-md:  2.75rem;
  --btn-height-lg:  3.25rem;
  --btn-px-sm:      1rem;
  --btn-px-md:      1.5rem;
  --btn-px-lg:      2rem;
  --btn-font-size:  0.9375rem;
  --btn-font-weight:700;
  --btn-radius:     var(--radius-sm);
  --btn-transition: var(--transition-base);

  /* Cards */
  --card-bg:      var(--color-bg-white);
  --card-border:  var(--color-border);
  --card-radius:  var(--radius-md);
  --card-shadow:  var(--shadow-md);
  --card-padding: 1.5rem;

  /* Forms */
  --input-height:   2.75rem;
  --input-px:       0.875rem;
  --input-border:   var(--color-border);
  --input-radius:   var(--radius-sm);
  --input-bg:       var(--color-bg-white);
  --input-focus:    var(--color-accent);

  /* Nav */
  --nav-bg-transparent: transparent;
  --nav-bg-solid:       var(--color-primary);
  --nav-link-color:     rgba(255,255,255,0.88);
  --nav-link-hover:     #FFFFFF;
  --nav-link-active:    var(--color-accent);
}
