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

section { padding: 80px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-1);
  border-radius: 2px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 700px;
  line-height: 1.1;
}
.section-head p {
  max-width: 360px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.section-head-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.accent-green { color: var(--green-1); }
.accent-cream { color: #fffcdb; }
