:root {
  /* Colores */
  --color-black: #0e0e0e;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-muted: #f3f0ea;
  --color-red: #7a1e1e;
  --color-gold: #c7a14a;

  /* Texto */
  --text-main: var(--color-white);
  --text-muted: #cfcfcf;

  /* Tipografía */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 1.25rem;

  /* Header */
  --header-height: 72px;

  /* Transiciones */
  --transition-base: 0.3s ease;
}