/* ============================================
   DESIGN TOKENS — Editorial Documentary Portfolio
   Cream + Ink Black + Red-Orange
   ============================================ */

:root {
  /* ── Colors — Sleek Midnight Editorial ── */
  --bg-primary: #030303;
  --bg-secondary: #080808;
  --bg-tertiary: #0c0c0c;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --bg-dark: #000000;

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --text-muted: #444444;

  /* ── Accent — Pleasant Blue ── */
  --accent: #3b82f6;
  --accent-dim: #1e3a8a;
  --accent-glow: transparent;
  --accent-glow-strong: transparent;

  /* Re-evaluating gradients */
  --gradient-accent: #3b82f6;
  --gradient-dark: #030303;
  --gradient-hero-overlay: linear-gradient(
    180deg,
    rgba(3, 3, 3, 0.2) 0%,
    rgba(3, 3, 3, 0.8) 80%,
    rgba(3, 3, 3, 1) 100%
  );
  --gradient-section: transparent;

  /* ── Borders ── */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(255, 62, 17, 0.3);
  --border-strong: #ffffff;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', sans-serif;

  --fs-hero: clamp(3.5rem, 8vw, 7.5rem);
  --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1rem, 1.5vw, 1.25rem);
  --fs-body: clamp(0.9rem, 1vw, 1.05rem);
  --fs-small: clamp(0.75rem, 0.85vw, 0.85rem);
  --fs-label: clamp(0.7rem, 0.8vw, 0.8rem);
  --fs-nav: 0.85rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.1;
  --lh-snug: 1.35;
  --lh-normal: 1.75;
  --lh-relaxed: 1.9;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;
  --ls-widest: 0.25em;

  /* ── Spacing (Harmonic Scale) ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 4.5rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
  --space-section: clamp(5rem, 10vh, 10rem);

  /* ── Layout ── */
  --container-max: 1400px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);
  --nav-height: 72px;

  /* ── Radius (Sharp/Brutal) ── */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-full: 0px;

  /* ── Transitions ── */
  --ease-awwwards: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);

  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
  --duration-slower: 0.8s;
  --duration-slowest: 1.2s;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 4px 30px rgba(255, 62, 17, 0.08);
  --shadow-accent-strong: 0 8px 40px rgba(255, 62, 17, 0.15);

  /* ── Z-Index ── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-cursor: 500;
  --z-preloader: 600;
}
