/* ============================================================
   layout.css — container, section spacing, shared utilities
   ============================================================ */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

/* Eyebrow / section label */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

/* Shared button styles */
.btn-primary {
  display: inline-block;
  background: var(--indigo);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--indigo-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

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

/* Section header centering helpers — used when a section body is left-aligned
   but the eyebrow/heading row is centered */
.section-header-center {
  text-align: center;
}

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

/* Heading typeface — Space Grotesk for all display headings */
h1, h2, h3 {
  font-family: var(--font-heading);
}

/* Em styling in headings — renders as indigo, not italic */
h1 em,
h2 em {
  font-style: normal;
  color: var(--indigo);
}
