/* ============================================
   Utility Classes
   ============================================ */

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-cursive {
  font-family: var(--font-cursive);
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1.15em;
  display: inline-block;
}

.text-gradient {
  color: var(--accent-orange);
}

/* Section Headers (shared across multiple sections) */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  animation: float-particle linear infinite;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}
