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

.container-wide {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 5;
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--dim);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.975rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
}
