/* Typography Classes */
.elite-h1 {
  font-family: var(--font-primary);
  font-weight: 700; /* Bold */
  font-size: 56px;
  line-height: 110%;
  letter-spacing: -2.5%;
  font-style: normal;
}

.elite-h2 {
  font-family: var(--font-primary);
  font-weight: 600; /* SemiBold */
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -2%;
  font-style: normal;
}

.elite-h3 {
  font-family: var(--font-primary);
  font-weight: 600; /* SemiBold */
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -1.5%;
  font-style: normal;
}

.elite-h4 {
  font-family: var(--font-primary);
  font-weight: 500; /* Medium */
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -1%;
  font-style: normal;
}

.elite-button-text {
  font-family: var(--font-primary);
  font-weight: 700; /* Bold */
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 1.5%;
  font-style: normal;
}

.elite-paragraph {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular */
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 2%;
  font-style: normal;
}

.elite-label {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular */
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 3%;
  font-style: normal;
}

/* Global Typography Overrides */
h1,
.h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: -0.025em; /* -2.50% */
}

h2,
.h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -0.02em; /* -2.00% */
}

h3,
.h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.015em; /* -1.50% */
}

h4,
.h4 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.01em; /* -1.00% */
}

p,
.paragraph {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.02em; /* 2.00% */
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1,
  .h1,
  .elite-h1 {
    font-size: 40px;
  }

  h2,
  .h2,
  .elite-h2 {
    font-size: 28px;
  }

  h3,
  .h3,
  .elite-h3 {
    font-size: 20px;
  }
}
