@font-face {
  font-family: "Inter";
  src: url("../../04-Assets/fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sanchez";
  src: url("../../04-Assets/fonts/Sanchez-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sanchez";
  src: url("../../04-Assets/fonts/Sanchez-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-rich-black: #070707;
  --color-charcoal: #121212;
  --color-white: #FFFFFF;
  --color-muted-gray: #A6A6A6;
  --color-luxury-gold: #D6A63A;

  --color-bg: var(--color-rich-black);
  --color-bg-secondary: #111111;
  --color-surface: var(--color-charcoal);
  --color-surface-hover: #1A1A1A;
  --color-border: #222222;
  --color-text-primary: var(--color-white);
  --color-text-secondary: var(--color-muted-gray);
  --color-text-muted: rgba(255, 255, 255, 0.40);
  --color-accent: var(--color-luxury-gold);

  --font-heading: "Sanchez", Georgia, "PingFang SC", "Noto Sans SC", "Noto Sans", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "PingFang SC", "Noto Sans SC", "Noto Sans", "Microsoft YaHei", sans-serif;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-heavy: 900;

  --text-hero: 2.5rem;
  --text-h1: 2rem;
  --text-h2: 1.5rem;
  --text-h3: 1.25rem;
  --text-body: 1rem;
  --text-body-lg: 1.125rem;
  --text-small: 0.75rem;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-section: 48px;

  --container-max: 960px;
  --content-width: 640px;
}

@media (min-width: 768px) {
  :root {
    --text-hero: 3.5rem;
    --text-h1: 2.5rem;
    --text-h2: 1.75rem;
    --space-section: 80px;
  }
}
