/* ============================================
   NT ELEGANZ — CSS VARIABLES / DESIGN TOKENS
   ============================================ */

:root {
  /* ── Backgrounds (Off-White) ── */
  --bg-primary: #f5f3ef;
  --bg-secondary: #ede9e3;
  --bg-surface: #faf9f7;
  --bg-card: #f0ede7;
  --bg-hover: #e8e4dc;

  /* ── Black (acento principal) ── */
  --gold: #0a0a0a;
  --gold-light: #2a2a2a;
  --gold-dark: #000000;
  --gold-glow: rgba(0, 0, 0, 0.08);
  --gold-glow-strong: rgba(0, 0, 0, 0.18);

  /* ── Texto ── */
  --text-primary: #0a0a0a;
  --text-secondary: #3a3a3a;
  --text-muted: #8a8a8a;
  --text-inverse: #f5f3ef;

  /* ── Bordas ── */
  --border: rgba(0, 0, 0, 0.10);
  --border-strong: rgba(0, 0, 0, 0.22);
  --border-subtle: rgba(0, 0, 0, 0.05);

  --white: #ffffff;
  --black: #000000;

  /* ── Typography ── */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --tracking-tightest: -0.05em;
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

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

  /* ── Layout ── */
  --container-max: 1440px;
  --container-wide: 1200px;
  --container-narrow: 900px;
  --gutter: clamp(1rem, 5vw, 3rem);

  /* ── Border Radius ── */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-gold: 0 0 30px rgba(27, 58, 107, 0.12);
  --shadow-gold-strong: 0 0 60px rgba(27, 58, 107, 0.22);
  --shadow-card: 0 8px 40px rgba(15, 28, 46, 0.10);
  --shadow-drawer: -10px 0 60px rgba(15, 28, 46, 0.18);

  /* ── Transitions ── */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

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

  /* ── Navbar ── */
  --nav-height: 72px;
  --announcement-height: 30px;
}
