/* Custom Properties & Global Tokens */
:root {
  /* Brand Palette */
  --primary-red: #ed1f24;
  --dark-red: #e40c0f;
  --black: #111111;
  --secondary-black: #1A1A1A;
  --white: #FFFFFF;
  --light-grey: #F8F8F8;
  --border-color: #E5E5E5;
  --overlay-dark: rgba(17, 17, 17, 0.75);

  /* Typography Rules */
  --font-heading: 'Poppins', serif;
  --font-body: 'Poppins', sans-serif;

  /* Strict Typography Scale */
  --h1-size: 60px;
  --h2-size: 48px;
  --h3-size: 35px;
  --h4-size: 28px;
  --h5-size: 22px;
  --section-heading-size: 35px;
  --body-size: 16px;
  --line-height-base: 1.8;

  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(26, 26, 26, 0.65);
  --glass-border: rgba(255, 255, 255, 0.1);
}