body {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--white);
  background: var(--bg-primary);
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
}

h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: var(--lh-snug);
}

h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
}

p {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}

.text-gold {
  color: var(--gold);
  font-style: italic;
  font-weight: var(--fw-medium);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-secondary-dark);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fw-light {
  font-weight: var(--fw-light);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.italic {
  font-style: italic;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #C9A74D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
