.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }

.justify-between {
  justify-content: space-between;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
}

.no-scroll {
  overflow: hidden;
}
