:root {
  /* ========================= Variables de marca ========================= */

  --color-brand-900: #081542;
  --color-brand-800: #102466;
  --color-brand-700: #1e3a8a;
  --color-brand-600: #2f4fa3;

  --color-accent-500: #b9973e;
  --color-accent-400: #c6a75e;
  --color-accent-300: #d8bf84;

  /* ========================= Neutros ========================= */

  --color-white: #ffffff;
  --color-ivory: #f7f4ee;
  --color-ivory-2: #f3efe7;
  --color-surface: #fcfbf8;
  --color-line: #e6dfd2;
  --color-line-strong: #d7cfbe;

  --color-text: #18202f;
  --color-text-soft: #5c667a;
  --color-text-muted: #7b8598;
  --color-heading: #081542;

  --color-success: #1f7a49;
  --color-danger: #b42318;

  /* Alias de compatibilidad */

  --color-border: var(--color-line);
  --color-primary: var(--color-brand-900);
  --color-primary-strong: var(--color-brand-800);

  /* ========================= Tipografía ========================= */

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Inter", Arial, sans-serif;

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

  --lh-tight: 1.05;
  --lh-heading: 1.1;
  --lh-body: 1.7;

  --fs-hero: clamp(2.45rem, 4.2vw, 4.4rem);
  --fs-h1: clamp(2.2rem, 3.2vw, 3.7rem);
  --fs-h2: clamp(2rem, 3vw, 3.125rem);
  --fs-h3: clamp(1.5rem, 2vw, 2rem);
  --fs-h4: clamp(1.1875rem, 1.4vw, 1.375rem);

  --fs-xl: 1.25rem;
  --fs-lg: 1.125rem;
  --fs-base: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Alias de compatibilidad */

  --fs-300: var(--fs-xs);
  --fs-600: var(--fs-h2);

  /* ========================= Espaciado ========================= */

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;

  /* ========================= Radios ========================= */

  --radius-sm: 0.625rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.125rem;
  --radius-xl: 1.375rem;
  --radius-pill: 999px;

  /* ========================= Sombras ========================= */

  --shadow-xs: 0 2px 12px rgba(8, 21, 66, 0.04);
  --shadow-sm: 0 8px 24px rgba(8, 21, 66, 0.07);
  --shadow-md: 0 16px 40px rgba(8, 21, 66, 0.1);
  --shadow-lg: 0 28px 70px rgba(8, 21, 66, 0.14);

  /* ========================= Bordes ========================= */

  --border-light: 1px solid var(--color-line);
  --border-strong: 1px solid var(--color-line-strong);
  --border-brand: 1px solid rgba(8, 21, 66, 0.14);

  /* ========================= Layout ========================= */

  --container-width: 1200px;
  --container-narrow: 980px;
  --container-padding: 24px;
  --header-height: 5rem;

  /* ========================= Motion ========================= */

  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 420ms;

  /* ========================= Capas ========================= */

  --z-base: 1;
  --z-dropdown: 20;
  --z-header: 90;
  --z-overlay: 70;
  --z-modal: 100;
}
