/* ============================================
   LAYOUT — Grid, Sections, Containers
   ============================================ */

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Sections --- */
.section {
  padding: var(--space-section) 0;
}

.section--dark {
  background-color: var(--warm-black);
  color: var(--white);
}

.section--olive {
  background: linear-gradient(135deg, var(--olive) 0%, #5a6a4e 100%);
  color: var(--white);
}

/* --- Section Headers --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-sm);
}

.section--dark .section-eyebrow {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
}

.section--dark .section-subtitle {
  color: rgba(253, 252, 250, 0.65);
}

.section-header {
  margin-bottom: var(--space-xl);
}

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

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* --- Two-Column Grid --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* --- Three-Column Grid --- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* --- Four-Column Grid (Footer) --- */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* --- Text Utility --- */
.text-center {
  text-align: center;
}

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